-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
46 lines (43 loc) · 1.09 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
requires = [
'aiofiles==0.3.2',
'attrs==17.4.0',
'httptools==0.0.9',
'jinja2==2.10',
'MarkupSafe==1.0',
'numpy==1.13.3',
'opencv-python==3.3.0.10',
'python-magic==0.4.13',
'sanic==0.6.0',
'ujson==1.35',
'uvloop==0.8.1',
'websockets==4.0.1',
]
console_scripts = [
'app = moeflow.cmds.main:main',
]
setup(
name='MoeFlow',
version='0.0.1',
author='Iskandar Setiadi',
author_email='[email protected]',
url='https://github.com/freedomofkeima/MoeFlow',
description='Anime characters recognition website, powered by TensorFlow',
license='MIT',
packages=find_packages(where='src'),
package_dir={
'': 'src'
},
install_requires=requires,
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3.5",
"Environment :: Web Environment"
],
entry_points={'console_scripts': console_scripts},
extras_require={
'tests': ['pytest', 'pytest-cov', 'pytest-sugar']
},
zip_safe=False
)