-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (53 loc) · 1.78 KB
/
Copy pathsetup.py
File metadata and controls
61 lines (53 loc) · 1.78 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
import os
from setuptools import setup
from setuptools import find_packages
here = os.path.abspath(os.path.dirname("__file__"))
version = {}
with open(os.path.join(here, "transposonmapper", "__version__.py")) as f:
exec(f.read(), version)
with open("README.rst") as readme_file:
readme = readme_file.read()
setup(
name="transposonmapper",
version=version["__version__"],
description="A libray for processing sequencing data for SAturated Transposon Analysis in Yeast (SATAY)",
long_description=readme,
long_description_content_type='text/x-rst',
url="https://github.com/SATAY-LL/Transposonmapper",
author="Liedewij Laan Lab",
author_email="L.M.InigoDeLaCruz@tudelft.nl",
license="Apache Software License 2.0",
packages=find_packages(exclude=["*tests*"]),
package_data={"transposonmapper": ["data_files/*"]},
key_words=["transposon-mapping", "Saccharomyces Cerevisiae",],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Unix Shell",
],
test_suite="tests",
install_requires=["numpy", "matplotlib", "scipy","pandas"],
extras_require={
"dev": [
"bump2version",
"mock",
"pysam",
"pytest",
"pytest-cov",
"jupyter-book>=0.7.0",
"sphinx-click",
"sphinx-tabs",
"sphinxext-rediraffe",
"sphinx_inline_tabs",
"ghp-import"
],
"linux":[
"pysam"
]
},
)