-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 774 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 774 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
25
26
27
#!/usr/bin/env python
try:
import os
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md')) as fh:
long_description_text = fh.read()
setup(
name = "CANDY",
scripts = ['candy.py'],
version = "0.1.0",
description = 'Database curation tool for targeted-amplicon sequencing.',
long_description=long_description_text,
long_description_content_type="text/markdown",
author = 'Anna Gaines',
author_email = 'anna.gaines@ihrc.com',
url = 'https://github.com/ar0ch/URDO-CANDy',
classifiers = [
'Programming Language :: Python :: 3.6',
],
install_requires=['lxml'],
)