-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
36 lines (34 loc) · 1.14 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
import setuptools
with open('README.md', 'r') as f:
long_description = f.read()
setuptools.setup(
name='keras-balanced-batch-generator',
version='0.0.3',
url='https://github.com/soroushj/keras-balanced-batch-generator',
author='Soroush Javadi',
author_email='[email protected]',
license='MIT',
description='A Keras-compatible generator for creating balanced batches',
long_description=long_description,
long_description_content_type='text/markdown',
keywords=[
'keras',
'generator',
],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
],
install_requires=[
'numpy>=1.0.0',
],
python_requires='>=3.0',
py_modules=['keras_balanced_batch_generator'],
)