-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
53 lines (45 loc) · 1.33 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
from setuptools import setup, find_packages
from pathlib import Path
# Versioning
def _get_version() -> str:
"""Read PyCEC/VERSION.txt and return its contents."""
path = Path("PyCEC").resolve()
version_file = path / "VERSION.txt"
return version_file.read_text().strip()
version = _get_version()
requirements = [
'numpy',
'MDAnalysis',
'tqdm',
'matplotlib'
]
# TODO: Add long description linked to README.md
setup(
name='PyCEC',
version=version,
author='Ronald Cvek',
author_email='[email protected]',
description=(
'Python implementation of the Center of '
'Excess Charge (CEC) collective variable.'
),
url='https://github.com/roncv/PyCEC',
packages=find_packages(),
install_requires=requirements,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Chemistry',
],
python_requires='>=3.6',
package_data={ # Optional: include data files
'your_package_name': ['data/*']
},
entry_points={ # Optional: define command-line scripts
'console_scripts': [
'pycec=PyCEC.scripts.pycec:func_name',
],
},
)