-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (29 loc) · 1.06 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
from setuptools import setup, find_packages
from pkg_resources import parse_requirements
requirements = [
"tensorflow==2.11.0",
"Pillow==9.4.0",
"scikit-video==1.1.11",
"numpy>=1.14.5"
]
setup(name='dapipe',
version='0.2.1',
description='Creates dataset builder objects',
url='https://github.com/aiporre/multidataloader.git',
download_url='https://github.com/aiporre/multidataloader/archive/v0.2.1.tar.gz',
author='Ariel Iporre',
author_email='[email protected]',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
install_requires=requirements,
license='Apache License Version 2.0 ',
packages=find_packages(exclude=["*_dataset"]),
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
],
)