forked from binaryai/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (31 loc) · 960 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
#!/usr/bin/env python
# coding: utf-8
from setuptools import setup, find_packages
setup(
name='binaryai',
author='binaryai',
author_email='[email protected]',
packages=find_packages(),
setup_requires=['setuptools_scm'],
use_scm_version=True,
install_requires=['requests', 'Click'],
url="https://github.com/binaryai/sdk",
license='GPLv3',
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
project_urls={
"Documentation": "https://binaryai.readthedocs.io/",
"Source": "https://github.com/binaryai/sdk",
},
python_requires=">=2.7",
entry_points='''
[console_scripts]
binaryai=binaryai.binaryai_cli:main
'''
)