-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
49 lines (46 loc) · 1.15 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="SMTK",
version='0.0.1',
description="Make social media collection & network mapping process as simple as possible for researchers.",
url="https://github.com/Data4Democracy",
platforms="Posix; MacOS X; Windows",
entry_points={
"console_scripts": ['smtk = smtk.main:main']
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Data science",
],
packages=[
"smtk",
"smtk.utils",
"smtk.examples",
"smtk.commands",
"smtk.commands.twitter",
"smtk.commands.google"
],
install_requires=[
'python-twitter',
'pytest-cov',
'dataset',
'autopep8',
'coloredlogs',
'click',
'facepy',
'singer-python',
'pymongo',
'click-completion',
'better_exceptions',
'BASC-py4chan',
'beautifulsoup4',
'selenium',
'boto'
],
dependency_links = [
'git+https://[email protected]/spotify/luigi.git'
]
)