-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
61 lines (53 loc) · 2.13 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
56
57
58
59
60
61
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" install eWRT :) """
import sys
from setuptools import setup, find_packages
from sys import exit
setup(
###########################################
# Metadata
name="eWRT",
version="3.0.0-dev",
description='eWRT',
author='Albert Weichselbraun, Heinz Lang, Gerhard Wohlgenannt, Johannes Duong, Norman Süsstrunk, Daniel Streiff',
author_email='[email protected], [email protected], [email protected], [email protected], [email protected], [email protected]',
url='http://www.weblyzard.com/ewrt/',
license="GPL3",
package_dir={'': 'src'},
install_requires=['redis',
'google-cloud-storage==2.0.0',
'oauth2client==4.1.3', # YT
'google-api-python-client==2.42.0', # YT,
'six',
# 'gdata @ git+https://github.com/dvska/gdata-python3#egg=gdata',
'wikipedia',
'pywikibot==6.5.0',
'mwparserfromhell>=0.5.0', # dependency for pywikibot from 6.3.0
'bz2file',
'googleads==31.0.0' if sys.version_info.major == 2 else 'googleads',
'ujson'
],
classifiers=[
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3 :: Only',
],
###########################################
# Run unittests
# NOTE: is this still needed with gitlab-ci in place?
test_suite='nose.collector',
###########################################
# Scripts
scripts=['src/eWRT/input/corpus/reuters/reuters.py'],
###########################################
# Package List
packages=find_packages('src'),
###########################################
# Package Data
package_data={'eWRT.stat.language': ['data/*.csv'],
'eWRT.input.stock': ['data/*.csv'],
},
)