-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
57 lines (52 loc) · 1.63 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
49
50
51
52
53
54
55
56
57
from setuptools import find_packages, setup
with open('README.rst') as f:
long_description = f.read()
packages = ['aqueduct']
required = [
'cffi==1.16.0',
'psutil==5.9.4',
'setuptools==70.2.0',
]
extras = {
'aiohttp': [
'aiohttp',
],
'numpy': [
'numpy'
]
}
setup(
name='aqueduct',
packages=find_packages(),
version='1.11.7',
license='MIT',
license_files='LICENSE.txt',
author='Data Science SWAT',
author_email='UnitDataScienceSwat@avito.ru',
description='Builder for performance-efficient prediction.',
url='https://github.com/avito-tech/aqueduct',
download_url='https://github.com/avito-tech/aqueduct/archive/refs/heads/main.zip',
keywords=['datascience', 'learning', ],
python_requires='>=3.8',
include_package_data=True,
long_description=long_description,
long_description_content_type='text/x-rst',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Operating System :: OS Independent',
],
setup_requires=required,
install_requires=required,
extras_require=extras,
)