-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (29 loc) · 1008 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(name='SCOAP'
,version='0.0.1'
,author=''
,author_email=''
,description="Scripts for analysis of solar concentrator optics"
,long_description=long_description
,long_description_content_type="text/markdown"
,url='https://github.com/anustg/Solar_concentrator_optics'
,packages=setuptools.find_packages()
,license="GPL v3.0 or later, see LICENSE file"
,classifiers=[
"Development Status :: 4 - Beta"
,"Environment :: Console"
,"Intended Audience :: Science/Research"
,"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)"
,"Natural Language :: English"
,"Operating System :: Microsoft :: Windows :: Windows 10"
,"Operating System :: POSIX :: Linux"
,"Programming Language :: Python :: 2"
,"Programming Language :: Python :: 3"
,"Topic :: Scientific/Engineering :: Physics"
]
,install_requires=['numpy']
,python_requires='>=2.7'
)