-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·33 lines (29 loc) · 1.06 KB
/
setup.py
File metadata and controls
executable file
·33 lines (29 loc) · 1.06 KB
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='solsticepy'
,version='0.3.10'
,author='Ye Wang'
,author_email='ye.wang@anu.edu.au'
,description="Scripts and wrappers for Solstice ray-tracing software"
,long_description=long_description
,long_description_content_type="text/markdown"
,url='https://github.com/anustg/solstice-scripts'
,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=['scipy','numpy','uncertainties','matplotlib','colorama']
,python_requires='>=2.7'
)