-
Notifications
You must be signed in to change notification settings - Fork 121
/
setup.py
74 lines (63 loc) · 2.31 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
71
72
73
74
import io
import os
from setuptools import setup, find_packages
VERSION = None
with io.open(
os.path.join(os.path.dirname(__file__), 'biopandas/__init__.py'),
encoding='utf-8'
) as f:
for l in f:
if not l.startswith('__version__'):
continue
VERSION = l.split('=')[1].strip(' "\'\n')
break
PROJECT_ROOT = os.path.dirname(os.path.realpath(__file__))
REQUIREMENTS_FILE = os.path.join(PROJECT_ROOT, 'requirements.txt')
with open(REQUIREMENTS_FILE) as f:
install_reqs = f.read().splitlines()
install_reqs.append('setuptools')
setup(name='biopandas',
version=VERSION,
description='Machine Learning Library Extensions',
author='Sebastian Raschka',
author_email='mail@sebastianraschka.com',
url='https://github.com/rasbt/biopandas',
packages=find_packages(),
package_data={'': ['LICENSE.txt',
'README.md',
'requirements.txt']
},
include_package_data=True,
install_requires=install_reqs,
extras_require={'test': ['pytest', 'pytest-cov','flake8'],},
license='BSD 3-Clause',
platforms='any',
classifiers=[
'License :: OSI Approved :: BSD License',
'Development Status :: 5 - Production/Stable',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: MacOS',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
],
long_description_content_type='text/markdown',
long_description="""
Biopandas is a Python package for working with molecular structures
in pandas DataFrames.
Contact
=============
If you have any questions or comments about biopandas,
please feel free to contact me via
eMail: mail@sebastianraschka.com
or Twitter: https://twitter.com/rasbt
This project is hosted at https://github.com/rasbt/biopandas
The documentation can be found at http://rasbt.github.io/biopandas/
"""
)