-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
35 lines (32 loc) · 1.02 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
from setuptools import setup
from ksrates._version import __version__
with open("README.md", 'r') as f:
long_description = f.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
setup(
name='ksrates',
version=__version__,
packages=['ksrates', 'wgd_ksrates'],
url='https://github.com/VIB-PSB/ksrates',
license='GNU GPL v3.0',
author='Cecilia Sensalari, Steven Maere, Rolf Lohaus',
author_email='[email protected], [email protected]',
description='Command line tool for substitution rate-adjustment in mixed paralog-ortholog Ks distributions.',
long_description=long_description,
package_data={
'ksrates': ['ks.mplstyle']
},
py_modules=['ksrates_cli'],
install_requires=[required],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
],
python_requires='>=3.6',
entry_points={
"console_scripts": [
"ksrates = ksrates_cli:cli"
]
},
)