forked from Tiledesk/tiledesk-ai
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (22 loc) · 774 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
from setuptools import setup, find_packages
import glob
import os
with open('requirements.txt') as f:
required = [x for x in f.read().splitlines() if not x.startswith("#")]
from tileai.cli import __version__, _program
setup(name=_program,
version=__version__,
packages=find_packages(include=['tileai','tileai.*']),
description='tiledesk ai',
url='https://github.com/Tiledesk/tiledesk-ai',
author='Gianluca Lorenzo',
author_email='[email protected]',
license='MIT',
#entry_points={'console_scripts':[
# str(_program)+'=tileai.__main__:main']
#},
scripts= ['bin/tileai'],
keywords=[],
install_requires=required,
tests_require=['pytest', 'coveralls']
)