forked from Edinburgh-Genome-Foundry/DnaFeaturesViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (16 loc) · 649 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (16 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
exec(open("dna_features_viewer/version.py").read()) # loads __version__
setup(
name="dna_features_viewer",
version=__version__,
author="Zulko",
description="Plot features from DNA sequences (e.g. Genbank) with Python",
long_description=open("pypi-readme.rst").read(),
url="https://github.com/Edinburgh-Genome-Foundry/DnaFeaturesViewer",
license="MIT",
keywords="DNA Sequence Feature Genbank Biopython Matplotlib",
packages=find_packages(exclude="docs"),
install_requires=["matplotlib>=3", "Biopython", "packaging"],
)