forked from chrispy67/cgen2gmx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (60 loc) · 2.27 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
from setuptools import setup, find_namespace_packages
# Load the long description from the README file
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="cgen2gmx",
version="1.1.0", # Needs to be updated EACH TIME A NEW RELEASE IS CREATED
description="A small commandline tool for managing forcefield parameters used in molecular dynamics simulations",
long_description=long_description, # Detailed description from README
long_description_content_type="text/markdown", # Type of content in long description
url="https://github.com/chrispy67/cgen2gmx",
author="Christian Phillips ",
author_email="[email protected]",
classifiers=[
"Development Status :: 1 - Planning",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
keywords="molecular dynamics, charmm, forcefield, computational chemistry", # Relevant keywords
packages=find_namespace_packages(), # Finds all packages under the namespace
python_requires=">=3.7",
install_requires=[
# List your package dependencies here, e.g.,
# 'pandas', 'os', 'click'
],
py_modules=['cgen2gmx'],
entry_points={
'console_scripts': [
'cgen2gmx=cgen2gmx:main',
],
},
include_package_data=True,
project_urls={
"Bug Reports": "https://github.com/chrispy67/cgen2gmx/issues",
"Source": "https://github.com/chrispy67/cgen2gmx",
},
)
# setup(
# name="cgen2gmx",
# version="1.0", # Required
# long_description=long_description,
# long_description_content_type="text/markdown",
# url="https://github.com/chrispy67/cgen2gmx",
# author="Christian Phillips",
# author_email="[email protected]",
# classifiers=[
# "Development Status :: 1 - Planning",
# "License :: OSI Approved :: MIT License",
# "Programming Language :: Python :: 3",
# ],
# keywords="molecular dynamics, charmm, forcefield, computational chemistry",
# packages=find_namespace_packages(),
# python_requires="<4",
# extras_require={
# "test": ["coverage", 'pytest'],
# },
# package_data={},
# data_files=None,
# entry_points={},
# )