-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 1.03 KB
/
setup.py
File metadata and controls
28 lines (25 loc) · 1.03 KB
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
import setuptools
from setuptools import setup
with open("README.md", 'r', encoding="utf-8") as f:
long_description = f.read()
setup(
name='pure-data',
version = '0.1.6.6',
author='BOGDAN PECHENKIN',
author_email='uberkinder@yandex.com',
description='Pure Data Framework',
long_description=long_description,
long_description_content_type='text/markdown',
project_urls={
'GitHub': 'https://github.com/SimulatorML/Pure-Data',
'Documentation': 'https://pure-data.readthedocs.io/en/latest/index.html',
},
install_requires=['numpy==1.24.3', 'pandas==2.0.0', 'pylint==2.17.2', 'pytest==7.3.1', 'scikit-learn==1.2.2', 'clickhouse_driver==0.2.6', 'psycopg2-binary==2.9.6', 'pymssql==2.2.8', 'mysql-connector-python==8.1.0', 'tabulate==0.9.0', 'tqdm==4.66.1'],
packages=setuptools.find_packages(),
python_requires='>=3.10',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
]
)