-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (42 loc) · 1.19 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
#!/usr/bin/env python3
from sys import version_info, stderr
from setuptools import setup, find_packages
NAME = 'pancat'
CURRENT_PYTHON = version_info[:2]
REQUIRED_PYTHON = (3, 10)
if CURRENT_PYTHON < REQUIRED_PYTHON:
stderr.write(
f"{NAME} requires Python 3.10 or higher and your current version is {CURRENT_PYTHON}.")
exit(1)
setup(
name=NAME,
version='0.3.1',
description='Tools for manipulating and visualizing GFA file format',
url='https://github.com/Tharos-ux/pancat',
author='Tharos',
author_email='dubois.siegfried@inria.fr',
packages=find_packages(),
package_data={'': ['template.html']},
include_package_data=True,
zip_safe=False,
license="LICENSE",
long_description=open("README.md", encoding='utf-8').read(),
long_description_content_type='text/markdown',
install_requires=[
'matplotlib',
'seaborn',
'numpy',
'pyvis',
'networkx',
'mycolorpy',
'levenshtein',
'gfagraphs',
'tharos-pytools',
'BubbleGun',
'statsmodels',
'resource',
'Bio',
'rich'
],
entry_points={'console_scripts': ['pancat=pancat.main:main']}
)