-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1008 Bytes
/
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
from setuptools import setup
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
pytest.main(self.test_args)
setup(name='werewolf',
version='0.1',
description='Jinro backend and CLI',
packages=['werewolf'],
license='MIT',
author='Junya Hayashi',
install_requires=[
"pyramid",
"pyramid_jinja2",
"pyramid_debugtoolbar",
"gevent-socketio",
"google-api-python-client",
"pyOpenSSL",
"PIL",
"PyYAML",
"enum34",
"flywheel",
],
extras_require={
"dev": ["gunicorn"],
},
tests_require=["pytest"],
cmdclass = {'test': PyTest},
entry_points="""\
[paste.app_factory]
main = werewolf.app:main
""",
)