-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (26 loc) · 875 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
from setuptools import setup
import versioneer
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
long_description = f.read()
setup(name="phylonetwork",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Gabriel Cardona",
author_email="[email protected]",
license="BSD",
keywords="phylogenetic trees networks",
packages=['phylonetwork'],
# package_dir = {'phylonetwork': 'src/phylonetwork'},
python_requires='>=3.7',
install_requires=[
'networkx>=2',
'pyparsing',
'numpy',
'cached_property'
],
url='https://github.com/bielcardona/PhyloNetworks',
long_description=long_description,
long_description_content_type='text/markdown'
)