-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
51 lines (46 loc) · 1.44 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
import os
base_name = 'intweet'
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name=base_name,
version='1.0',
author=u'Leon Young',
author_email='YoungL@github',
include_package_data=True,
packages=find_packages(), # include all packages under this directory
description='to update',
long_description="",
zip_safe=False,
package_data={'/intweet/templates': ['*'], },
# Adds dependencies
install_requires=['certifi',
'chardet',
'click',
'decorator',
'dominate',
'flask',
'flask-bootstrap',
'idna',
'itsdangerous',
'jinja2',
'pymysql',
'nltk',
'numpy',
'oauthlib',
'pep8',
'PySocks',
'requests',
'requests-oauthlib',
'six',
'sqlalchemy',
'tweepy',
'urllib3',
'validators',
'visitor',
'werkzeug',
]
)