forked from ryanlayer/samplot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (27 loc) · 960 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
29
30
import setuptools
import os
if os.path.isfile("README.md"):
with open("README.md", "r") as fh:
long_description = fh.read()
if os.path.isfile("requirements.txt"):
with open("requirements.txt", 'r') as f:
install_requires = f.read().splitlines()
print(install_requires)
setuptools.setup(
name='samplot',
version='1.0.3',
scripts=['src/samplot.py', "src/samplot_vcf.py"] ,
author="Jonathan Belyeu",
author_email="[email protected]",
description="plotting package for genomic structural variation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ryanlayer/samplot.git",
install_requires=install_requires,
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
],
)