-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
48 lines (45 loc) · 1.47 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
47
48
import codecs
import re
from setuptools import setup
with codecs.open("hasty/__init__.py") as file:
version = re.search(
r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
file.read(),
re.MULTILINE,
).group(1)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='hasty',
version=version,
description='Hasty API client library',
url='https://github.com/hasty-ai/hasty-python/',
author='Hasty GmbH',
license='MIT License',
long_description=long_description,
long_description_content_type="text/markdown",
packages=['hasty'],
package_data={
'hasty': ['inference/*']
},
setup_requires=[
"numpy>=1.16",
],
install_requires=["numpy>=1.16", 'requests >= 2.23.0', 'retrying==1.3.3'],
python_requires=">=3.9",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)