-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (37 loc) · 1.45 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
from setuptools import setup
from setuptools import find_packages
long_description = '''
Batch generation framework for Keras designed as a convenient and flexible tool
for making keras-ready batch generators from pandas DataFrames and a bunch of
sklearn transformers of your choice
'''
setup(name='keras-batchflow',
use_scm_version=True,
description='Batch generation framework for Keras',
long_description=long_description,
author='Maxim Scherbak',
author_email='[email protected]',
url='https://github.com/maxsch3/batchflow',
download_url='https://github.com/maxsch3/batchflow',
license='MIT',
setup_requires=['setuptools_scm'],
install_requires=['numpy>=1.20.0',
'scikit-learn',
'pandas>=2.0.0'],
extras_require={
'visualize': ['pydot>=1.2.4'],
'tests': ['pytest',
'markdown'],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=find_packages())