-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (39 loc) · 1.22 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (39 loc) · 1.22 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
ROOT_DIR = os.path.dirname(__file__)
SOURCE_DIR = os.path.join(ROOT_DIR)
with open('./requirements.txt') as reqs_txt:
requirements = [line for line in reqs_txt]
version = None
exec(open('datacanvas/version.py').read())
with open('./test-requirements.txt') as test_reqs_txt:
test_requirements = [line for line in test_reqs_txt]
setup(
name="pyDataCanvas",
version=version,
description="Runtime Support for DataCanvas.",
packages=[
'datacanvas',
'datacanvas.dataset',
'datacanvas.dataset.scheme',
'datacanvas.dataset.parser',
],
author="Xiaolin Zhang",
author_email="leoncamel@gmail.com",
install_requires=requirements,
tests_require=test_requirements,
zip_safe=False,
test_suite='tests',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
],
)