This repository has been archived by the owner on Dec 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
58 lines (54 loc) · 1.9 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
from setuptools import setup
from os import path
from codecs import open
here = path.abspath(path.dirname(__file__))
# get version from version.py
__version__ = None
exec(open('prolif/version.py').read())
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='prolif',
version=__version__,
description='Protein-Ligand Interaction Fingerprints',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/cbouy/ProLIF',
author='Cédric Bouysset',
author_email='[email protected]',
license='Apache License, Version 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
],
keywords='science chemistry biology drug-design chemoinformatics virtual-screening',
packages=['prolif'],
entry_points = {
'console_scripts': ['prolif=prolif.command_line:cli'],
},
python_requires='>=3',
install_requires=['numpy>=1.13.3'],
#extra_requires={
# 'test': ['coveralls','coverage'],
#},
dependency_links=['git+https://github.com/rdkit/rdkit'],
#test_suite="tests",
package_data={
'prolif': ['parameters.json'],
'examples': ['protein.mol2', 'ligand.mol2'],
},
include_package_data=True,
project_urls={
'Bug Reports': 'https://github.com/cbouy/ProLIF/issues',
'Say Thanks!': 'https://saythanks.io/to/cbouy',
},
zip_safe=False,
)