-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (33 loc) · 967 Bytes
/
setup.py
File metadata and controls
38 lines (33 loc) · 967 Bytes
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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="pyfish",
version="1.1.1",
author="Adam Streck, Tom L. Kaufmann",
author_email="adam.streck@iccb-cologne.org",
description="Plotting tool for evolutionary population dynamics. Creates a Fish (Muller) plot.",
long_description=read('README.md'),
long_description_content_type='text/markdown',
license="MIT",
keywords="plot genomics visualization",
python_requires='>=3.8',
packages=['pyfish'],
exclude_package_data={'': ['*.ipynb']},
entry_points={
'console_scripts': [
'pyfish = pyfish.main:run',
],
},
url="https://github.com/ICCB-Cologne/PyFish",
install_requires=[
'numpy>=1.14',
'pandas>=1.0',
'scipy>=1.0',
'matplotlib>=3.0',
],
extras_require={
'dev': ['pytest>=3.0'],
},
)