-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (31 loc) · 1.08 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
from setuptools import setup, find_packages
name = 'omamo'
__version__ = None
with open('{:s}/__init__.py'.format(name), 'rt') as fp:
for line in fp:
if line.startswith('__version__'):
exec(line.rstrip())
requirements = ['numpy', 'pandas', 'tables', 'pyoma', 'tqdm', 'importlib_resources; python_version < "3.9"']
desc = 'OMAmo - orthology-based model organism selection'
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name=name,
version=__version__,
author='Alina Nicheperovich, Sina Majidian and Adrian Altenhoff',
email='[email protected]',
url='https://github.com/DessimozLab/omamo',
description=desc,
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=requirements,
python_requires=">=3.6",
license='LGPLv3',
scripts=['bin/omamo'],
package_data={
# Include any *.dat files found in the "data" subdirectory
# of the "omamo" package, also:
"omamo": ["data/*.dat"],
},
)