Skip to content

Commit 6a67762

Browse files
committed
added setup.py
1 parent f29d72c commit 6a67762

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

setup.py

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='loop_to_python_api',
5+
version='0.1.0',
6+
description='Accessing swift code with python.',
7+
author='Miriam K. Wolff',
8+
author_email='miriamkwolff@outlook.com',
9+
url='https://github.com/miriamkw/LoopAlgorithmToPython',
10+
packages=find_packages(),
11+
install_requires=[
12+
'pytest',
13+
],
14+
classifiers=[
15+
'Programming Language :: Python :: 3',
16+
'License :: OSI Approved :: MIT License',
17+
'Operating System :: OS Independent',
18+
],
19+
python_requires='>=3.6', # Specify the Python versions you support
20+
)

0 commit comments

Comments
 (0)