-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.42 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
#!/usr/bin/env python
# coding: utf8
from setuptools import setup
with open('README.md') as f:
readme = f.read()
setup(
name='toloka-prefect',
packages=['toloka_prefect'],
version='0.0.3',
description='Toloka prefect tasks library',
long_description=readme,
long_description_content_type='text/markdown',
license='Apache 2.0',
author='Vladislav Moiseev',
author_email='[email protected]',
python_requires='>=3.7.0',
install_requires=[
'pandas >= 1.1.0',
'prefect',
'requests',
'toloka-kit==0.1.23',
],
include_package_data=True,
project_urls={
'Source': 'https://github.com/Toloka/toloka-prefect',
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Typing :: Typed',
],
)