-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 812 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='eds_tools',
version='0.1.0',
python_requires='>=3.9.10',
description='EDSTools: designed to combined variant calls from peaked data with the reference genome. Returns the genomic sequence of the allele most present in the peak.',
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Bug Tracker": "https://github.com/Genome-Function-Initiative-Oxford/EdTools/issues",
"Source": "https://github.com/Genome-Function-Initiative-Oxford/EdTools"},
author='Simone G. Riva, Edward Sanders',
author_email='simo.riva15@gmail.com',
packages=['eds_tools'],
install_requires = [
"pysam"
]
)