forked from mosdef-hub/gmso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.18 KB
/
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
33
34
35
36
37
38
from setuptools import setup
#####################################
VERSION = "0.0.0"
ISRELEASED = False
if ISRELEASED:
__version__ = VERSION
else:
__version__ = VERSION + '.dev0'
#####################################
setup(
name='gmso',
version=__version__,
author='Matthew W Thompson, Justin Gilmer',
author_email='[email protected], [email protected]',
url='https://github.com/mattwthompson/topology',
download_url='https://github.com/mattwthompson/topology/tarball/{}'.format(__version__),
package_dir={'gmso': 'gmso'},
license="MIT",
zip_safe=False,
keywords='gmso',
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Chemistry',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
],
)