We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 567504a commit 50787d0Copy full SHA for 50787d0
setup.py
@@ -0,0 +1,21 @@
1
+from setuptools import setup, find_packages
2
+
3
+setup(
4
+ name='research_project',
5
+ version='0.1.0',
6
+ description='CHANGETHIS research project as Python module structure',
7
+ long_description="<add a longer description>",
8
+ author='Written by Ian Ozsvald',
9
+ author_email='ian@ianozsvald.com',
10
+ url='CHANGETHIS http:///',
11
+ license='',
12
+ packages=find_packages(),
13
+ include_package_data=True,
14
+ zip_safe=False,
15
+ install_requires=[], #["numpy>=1.10"], # we use Anaconda instead of pip
16
+ classifiers=[
17
+ 'Environment :: Console',
18
+ 'Intended Audience :: Developers',
19
+ 'Operating System :: OS Independent',
20
+ 'Programming Language :: Python']
21
+)
0 commit comments