-
Notifications
You must be signed in to change notification settings - Fork 29
/
setup.py
50 lines (46 loc) · 1.43 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
import glob
from setuptools import setup
def findfiles(pat):
return [x for x in glob.glob('share/' + pat)]
data_files = [
# ('share/render', findfiles('render/*')),
]
# print "data_files = %s" % data_files
setup(
name='edx2bigquery',
version='1.3.0',
author='I. Chuang',
author_email='[email protected]',
packages=['edx2bigquery', 'edx2bigquery.test'],
scripts=[],
url='https://github.com/mitodl/edx2bigquery',
license='LICENSE',
description='Import research data from edX dumps into google BigQuery',
long_description=open('README.md').read(),
include_package_data=True,
entry_points={
'console_scripts': [
'edx2bigquery = edx2bigquery.main:CommandLine',
],
},
install_requires=['path.py',
'argparse',
'pygeoip',
'pytz',
'python-dateutil',
'geoip2',
'lxml',
'BeautifulSoup',
'unicodecsv',
'Jinja2',
'google-api-python-client',
'edxcut',
],
dependency_links = [
],
package_dir={'edx2bigquery': 'edx2bigquery'},
package_data={'edx2bigquery': ['lib/*', 'bin/*'] },
# package_data={ 'edx2bigquery': ['python_lib/*.py'] },
# data_files = data_files,
test_suite = "edx2bigquery.test",
)