-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
55 lines (52 loc) · 1.77 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(
name='courseraresearchexports',
version='0.0.29',
description='Command line tool for convenient access to '
'Coursera Research Data Exports.',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
keywords='coursera',
url='https://github.com/coursera/courseraresearchexports',
author='Chris Liu',
author_email='[email protected]',
license='Apache',
entry_points={
'console_scripts': [
'courseraresearchexports = courseraresearchexports.main:main',
],
},
packages=['courseraresearchexports',
'courseraresearchexports.commands',
'courseraresearchexports.constants',
'courseraresearchexports.exports',
'courseraresearchexports.containers',
'courseraresearchexports.models',
'courseraresearchexports.db'],
install_requires=[
'argcomplete>=1.4.1',
'courseraoauth2client>=0.0.1',
'requests>=2.7.0,<2.11',
'docker-py>=1.2.3',
'tqdm>=4.8.4',
'tabulate>=0.7.5',
'python-dateutil>=2.5.3',
'SQLAlchemy>=1.0.15',
'psycopg2>=2.6.2'
],
test_suite='nose.collector',
tests_require=['nose', 'nose-cover3'],
# IMPORTANT: This makes MANIFEST.in work. DO NOT USE `package_data`, as
# it does not work with sdist correctly.
# See http://flask.pocoo.org/docs/0.11/patterns/distribute/ for details
include_package_data=True,
zip_safe=False
)