-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (57 loc) · 2.03 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
from setuptools import setup
import pathlib
import re
import subprocess
import setuptools
directory = pathlib.Path(__file__).parent.resolve()
# version
init_path = directory.joinpath('smirnovert', '__init__.py')
text = init_path.read_text()
pattern = re.compile(r"^__version__ = ['\"]([^'\"]*)['\"]", re.MULTILINE)
version = pattern.search(text).group(1)
# long_description
readme_path = directory.joinpath('README.md')
try:
# Try to create an reStructuredText long_description from README.md
args = 'pandoc', '--from', 'markdown', '--to', 'rst', readme_path
long_description = subprocess.check_output(args)
long_description = long_description.decode()
except Exception as error:
# Fallback to markdown (unformatted on PyPI) long_description
print('README.md conversion to reStructuredText failed. Error:')
print(error)
long_description = readme_path.read_text()
setuptools.setup(
# Package details
name='smirnovert',
version=version,
url='https://github.com/slochower/smirnoff-host-guest',
description='Conversion tools for SMIRNOFF99Frosst',
long_description=long_description,
# Author details
author='David Slochower',
author_email='[email protected]',
# Package topics
keywords='amber smirnoff99frosst force field',
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
],
packages=['smirnovert'],
# Specify python version
python_requires='>=3.6',
# Run-time dependencies
# I'm really not sure how to install from GitHub here without a proper egg. This could cause strange incompatibilities. This package also depends on parmed, openmm, openmoltools, openforcefield, and OpenEye tools.
install_requires=[
'numpy',
'scipy',
'matplotlib',
'networkx',
'lxml',
'requests',
],
# Additional groups of dependencies
extras_require={},
)