-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (52 loc) · 1.11 KB
/
setup.py
File metadata and controls
55 lines (52 loc) · 1.11 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
install_requires = [
'alembic',
'asyncio_extras',
'base58',
'click>=6',
'Flask>=0.11',
'Flask-OAuthlib',
# 'mysql-connector-python-rf',
'pymysql',
'nnpy==1.4.2',
'python-dateutil',
'sqlalchemy>=1.1.4',
'typing-extensions',
'tornado',
'websocket-client',
'whisper==1.1.2',
]
setup(
name='circle_core',
version='0.2',
packages=find_packages(exclude=['tests']),
install_requires=install_requires,
dependency_links=[],
entry_points={
'console_scripts': [
'crcr=circle_core.cli:cli_entry',
],
},
extras_require={
'test': [
'autopep8',
'coverage',
'flake8',
'flake8-import-order',
'mypy',
'pytest',
'pytest-asyncio',
'pytest-cov',
'pytest-timeout',
'tcptest',
'tox',
'yapf',
],
'doc': [
'Sphinx',
'sphinx-rtd-theme',
]
}
)