We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f29d72c commit 6a67762Copy full SHA for 6a67762
1 file changed
setup.py
@@ -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