-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (36 loc) · 1.08 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
import os
from setuptools import setup, find_packages
PREFIX = 'crowdom'
setup_py_dir = os.path.dirname(__file__)
version_module_path = os.path.join(setup_py_dir, 'src', '__version__.py')
about = {}
with open(version_module_path) as f:
exec(f.read(), about)
with open('README.md') as f:
readme = f.read()
setup(
name=about['__title__'],
package_dir={PREFIX: 'src'},
packages=['crowdom', *(f'{PREFIX}.{package}' for package in find_packages('src'))],
version=about['__version__'],
description='Crowdom',
long_description=readme,
long_description_content_type='text/markdown',
license=about['__license__'],
author='Oleg Gulyaev',
author_email='o-gulyaev@yandex-team.ru',
python_requires='>=3.8.0',
install_requires=[
'toloka-kit==1.1.3',
'crowd-kit==1.0.0',
'python-dateutil>=2.8.2',
'beautifulsoup4>=4.8.2',
'matplotlib>=3.5.0',
'pylzy>=1.10.1',
'pure-protobuf>=2.2.2',
'ipywidgets==7.7.0',
'seaborn>=0.12.2',
'plotly>=5.14.0',
],
include_package_data=True,
)