-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 901 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 901 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# https://python-packaging.readthedocs.io/en/latest/minimal.html
# For a fuller example see: https://github.com/CGATOxford/UMI-tools/blob/master/setup.py
# Or: https://github.com/CGATOxford/cgat/blob/master/setup.py
# TO DO: update with further options such as include README.rst and others when ready
# TO DO: to add tests see https://python-packaging.readthedocs.io/en/latest/testing.html
from setuptools import setup
setup(name='pipeline_genotype_QC',
version='0.1',
description='Genotype QC pipeline for thousands of samples and markers follows UKB protocol',
url='https://github.com/EpiCompBio/genotype_tools',
author='Antonio J Berlanga-Taylor',
author_email='a.berlanga at imperial.ac.uk',
license='GPL-3.0',
# packages=['funniest'],
# install_requires=[
# 'cgat',
# 'CGATPipelines',
# ],
zip_safe=False
)