-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 745 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 745 Bytes
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
#!/usr/bin/env python
import setuptools
from numpy.distutils.core import Extension, setup
setup(
name="ChemVapDep",
version="1.0",
author="Daniele Padula",
author_email="dpadula85@yahoo.it",
description='''
A python package to run Chemical Vapout Deposition MD simulations with
GROMACS.
''',
url="https://github.com/dpadula85/ChemVapDep",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU GPL License",
"Operating System :: OS Independent",
],
entry_points={
'console_scripts' : [
'deposit=ChemVapDep.deposit:main',
]
},
zip_safe=False
)