forked from RexGibson/ice_pick
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (37 loc) · 1.26 KB
/
setup.py
File metadata and controls
executable file
·43 lines (37 loc) · 1.26 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
#!/usr/bin/env python
import ice_pick
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
packages = [
'ice_pick',
'ice_pick.filters',
]
test_requires = []
with open('requirements_test.txt') as f:
test_requires = f.read().split('\n')
requires = []
with open('requirements.txt') as f:
requires = f.read().split('\n')
setup(name=ice_pick.__title__,
version=ice_pick.__version__,
description='Python data access interface for Netflix OSS Ice Tool',
author=ice_pick.__author__,
author_email='opensource@demandmedia.com',
url='https://github.com/demandmedia/ice_pick',
license='Apache 2.0',
packages=packages,
package_dir={'ice_pick': 'ice_pick'},
install_requires=requires,
tests_require=test_requires,
setup_requires=['nose==1.3.0'],
classifiers=('Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
)
)