-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
47 lines (43 loc) · 1.72 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
from warnings import warn
from importlib import util
import sys, os
from setuptools import setup, find_packages
# ---------- Setup ------------------------------------------------------------------------------------------
import os
this_directory = os.path.abspath(os.path.dirname(__file__))
try:
with open(os.path.join(this_directory,'requirements.txt'), 'r') as fh:
requirements = fh.read().strip().split()
with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f:
__doc__ = f.read()
except Exception: # weird file
requirements = ['rdkit-to-params', 'xerox', 'requests', 'pandas', 'biopython']
__doc__ = ''
description = 'A variety of functions to make working with Pyrosetta easier.'
setup(
name='pyrosetta_help',
version='0.5.9',
python_requires='>=3.7',
packages=find_packages(),
install_requires=requirements,
url='https://github.com/matteoferla/pyrosetta_help',
license='MIT',
author='Matteo Ferla',
author_email='[email protected]',
classifiers=[ # https://pypi.org/classifiers/
'Development Status :: 4 - Beta', # Development Status :: 5 - Production/Stable
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
description=description,
long_description=__doc__,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': ['install_pyrosetta=pyrosetta_help.installer:parse'],
}
)