-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (63 loc) · 1.8 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
62
63
64
65
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = ''.join(f.readlines())
setup(
name='twitterwall',
version='0.5',
keywords='twitter feed cli web tweet wall',
description='Simple CLI & WEB based Twitter tweets feed',
long_description=long_description,
author='Marek Suchánek',
author_email='[email protected]',
license='MIT',
url='https://github.com/MarekSuchanek/PYT-TwitterWall',
zip_safe=False, # http://flask.pocoo.org/docs/0.11/patterns/distribute/
packages=find_packages(),
package_data={
'twitterwall': [
'static/*.*',
'static/fonts/*.*',
'static/images/*.*',
'templates/*.html'
]
},
entry_points={
'console_scripts': [
'twitterwall = twitterwall.cli:main',
],
},
install_requires=[
'Flask>=0.10.0',
'Flask-Injector>=0.8.0',
'injector>=0.9.0',
'Jinja2>=2.6',
'click>=6.6',
'requests>=2.10.0'
],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest-pep8',
'pytest-cov',
'pytest-sugar',
'pytest',
'betamax',
'flexmock',
],
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Communications',
'Topic :: Internet',
'Topic :: Sociology'
],
)