-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.21 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
# NOTE: Derived from https://github.com/biocore/qurro/blob/master/setup.py
from setuptools import find_packages, setup
classes = """
Development Status :: 3 - Alpha
Topic :: Software Development :: Libraries
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
"""
classifiers = [s.strip() for s in classes.split("\n") if s]
description = "Minimal Python library for parsing SPAdes FASTG files"
with open("README.md") as f:
long_description = f.read()
setup(
name="pyfastg",
version="0.1.0-dev",
license="MIT",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
author="Nick Waters, Marcus Fedarko",
maintainer="Marcus Fedarko",
maintainer_email="mfedarko@ucsd.edu",
url="https://github.com/fedarko/pyfastg",
classifiers=classifiers,
packages=find_packages(),
install_requires=["networkx >= 2"],
extras_require={
# The black < 22.10 pin is because black 22.10 stopped supporting
# python 3.6
"dev": ["pytest", "pytest-cov", "flake8", "black < 22.10"]
},
)