-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·63 lines (61 loc) · 1.83 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
from setuptools import find_packages, setup
version = '0.0.10'
setup(
name='polecat',
version=version,
author='Luke Hodkinson',
author_email='[email protected]',
maintainer='Luke Hodkinson',
maintainer_email='[email protected]',
description='',
long_description='',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: MIT License'
],
packages=find_packages(exclude=['tests', 'extern']),
include_package_data=True,
package_data={'': ['*.txt', '*.js', '*.html', '*.*']},
install_requires=[
'ujson~=1.35',
'psycopg2-binary~=2.8.4',
'graphql-core-next~=1.1.1',
# TODO: This should be in "cli".
'polecat-feedback',
# 'graphql-server-core @ https://github.com/norman-thomas/graphql-server-core/tarball/master',
'pyjwt~=1.7.1',
'pytimeparse~=1.1.8',
'pytz~=2019.1',
# Used to be in extras...
'click~=7.0',
'halo~=0.0.29',
'termcolor~=1.1.0',
'cached-property~=1.5.1'
],
extras_require={
'cli': [
'pytest~=4.3.1',
'pytest-asyncio~=0.10.0',
'pytest-cov~=2.8.1',
'pytest-mock~=3.1.1',
'pytest-polecat',
'factory-boy~=2.11.1',
'sanic~=19.3.1',
'sanic-cors~=0.9.9.post3',
'boto3~=1.9.125',
'coolname~=1.1.0',
'python-Levenshtein~=0.12.0'
]
},
entry_points={
'console_scripts': [
'polecat=polecat.cli.entrypoint:entrypoint'
]
},
zip_safe=True
)