forked from Benzhaomin/detectoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (41 loc) · 1.01 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
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
required = [
'pyramid',
'pyramid_chameleon',
'pyramid_debugtoolbar',
'waitress',
'sqlalchemy',
'requests',
]
extras = {
'test': [
'mock',
'webtest',
]
}
long_description= read('README.md') + '\n' + read('CHANGELOG')
setup(
name='detectoid',
version=read('version.txt').strip(),
description="Detectoid, a simple website to guess whether a Twitch stream has viewbots",
long_description=long_description,
author="Benjamin Maisonnas",
author_email="[email protected]",
url="https://github.com/Benzhaomin/detectoid.git",
license = 'GPLv3',
packages=[
'detectoid',
],
include_package_data=True,
zip_safe=False,
install_requires=required,
extras_require=extras,
test_suite="detectoid.tests",
entry_points="""\
[paste.app_factory]
main = detectoid:main
""",
)