-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
33 lines (26 loc) · 901 Bytes
/
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
from setuptools import setup, find_packages
name = 'omark'
__version__ = None
with open('{:s}/__init__.py'.format(name), 'rt') as fp:
for line in fp:
if line.startswith('__version__'):
exec(line.rstrip())
with open("README.md", "rt") as fh:
readme = fh.read()
requirements = ['biopython', 'ete3', 'omamer>=0.2.2', 'matplotlib', 'jinja2']
desc = 'OMArk - Proteome quality assesment based on OMAmer placements'
setup(
name=name,
version=__version__,
author='Yannis Nevers',
email='[email protected]',
url='https://github.com/DessimozLab/omark',
description=desc,
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(),
package_data={'omark':['assets/*.txt']},
include_package_data=True,
install_requires=requirements,
python_requires=">=3.9",
scripts=['bin/omark'])