-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
46 lines (45 loc) · 1.11 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
import pathlib
import sys
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup
HERE = pathlib.Path(__file__).parent
README = (HERE / "Readme.md").read_text()
extra_link_args = []
libraries = []
library_dirs = []
include_dirs = []
exec(open('imax/version.py').read())
setup(
name='imax',
version=__version__,
description='Interactive tool for visualize and classify multiple images at a time',
long_description=README,
long_description_content_type='text/markdown',
author='Matias Carrasco Kind',
author_email='[email protected]',
scripts=["imax-run"],
packages=['imax'],
package_data = {
'imax/static': ['*'],
'imax/templates': ['*'],
'imax' : ['config_template.yaml']
},
license='LICENSE.txt',
url='https://github.com/mgckind/imax.git',
install_requires=[
"aiohttp",
"aiohttp_cors",
"Pillow",
"click",
"pyyaml",
"coloredlogs",
"asyncio",
"numpy",
"tornado",
"matplotlib",
"requests"
],
)