-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (24 loc) · 882 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
27
28
29
30
31
32
from setuptools import setup, find_packages
from wolai import __version__, __author__
with open('requirements.txt') as f:
requirements = [l for l in f.read().splitlines() if l]
def long_description():
with open('README.md', 'r') as readme:
return readme.read()
setup(
name='wolai-python',
version=__version__,
packages=find_packages(),
author=__author__,
author_email='[email protected]',
keywords=['wolai', 'Python', 'SDK'],
description='wolai unofficial Python SDK',
long_description=long_description(),
long_description_content_type='text/markdown',
url='https://github.com/RicterZ/wolai-python',
download_url='https://github.com/RicterZ/wolai-python/tarball/master',
include_package_data=True,
zip_safe=False,
install_requires=requirements,
license='MIT',
)