forked from mosdef-hub/gmso
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (40 loc) · 1.28 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
39
40
41
42
43
44
from pathlib import Path
from setuptools import find_packages, setup
#####################################
VERSION = "0.8.0"
ISRELEASED = False
if ISRELEASED:
__version__ = VERSION
else:
__version__ = VERSION + ".dev0"
#####################################
setup(
name="gmso",
version=__version__,
packages=find_packages(),
include_package_data=True,
zip_safe=True,
author="Matthew W Thompson, Justin Gilmer",
author_email="matt.thompson@vanderbilt.edu, justin.b.gilmer@vanderbilt.edu",
url="https://github.com/mosdef-hub/gmso",
download_url="https://github.com/mosdef-hub/gmso/tarball/{}".format(
__version__
),
license="MIT",
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",
],
python_requires=">=3.6, <4",
)