-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
33 lines (29 loc) · 1011 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
31
32
33
import os
import sys
from setuptools import setup
tests_require = ["unittest2"]
base_dir = os.path.dirname(os.path.abspath(__file__))
version = "0.0.2"
setup(
name = "data-management-python",
version = version,
description = "A python library for data analysis",
long_description="\n\n".join([
open(os.path.join(base_dir, "README.md"), "r").read(),
]),
url = "https://github.com/imperial-genomics-facility/data-management-python",
author = "Avik Datta",
author_email = "reach4avik@yahoo.com",
maintainer = "Avik Datta",
maintainer_email = "reach4avik@yahoo.com",
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
],
packages = ["igf_data"],
zip_safe = False,
tests_require = tests_require,
test_suite = "test.get_tests",
)