-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1.16 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
import setuptools
from pygen_structures.version import version
with open("README.md", 'r') as readme_file:
long_description = readme_file.read()
setuptools.setup(
name="pygen-structures",
version=version,
author="Travis Hesketh",
author_email="[email protected]",
description="3D molecular structure generation for MD simulation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/thesketh/pygen-structures",
packages=setuptools.find_packages(),
entry_points = {
"console_scripts": ['pygen-structures = pygen_structures.__main__:main']
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Chemistry",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Typing :: Typed"
],
python_requires='>=3.6,<3.8',
include_package_data=True,
install_requires=[
'numpy',
]
)