-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1.2 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
with open('README.rst') as readme_file:
readme = readme_file.read()
setup(
name='pixel.py',
version='1.0.2',
packages=['pixel'],
url='https://github.com/filipsedivy/pixel.py',
download_url='https://github.com/filipsedivy/pixel.py/tarball/master',
license='Apache-2.0 License',
licesne_file='LICENSE',
author='Filip Sedivy',
author_email='[email protected]',
description='Image Data Preprocessing Toolkit',
long_description=readme,
requires=['pillow', 'filetype'],
python_requires='>=3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: System',
'Topic :: System :: Filesystems',
'Topic :: Utilities'
],
platforms=['any'],
zip_safe=True
)