forked from hhatto/nude.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 919 Bytes
/
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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='nudepy',
version='0.2',
description="Nudity detection with Python. Port of nude.js to Python.",
long_description=open('README.rst').read(),
author='Hideo Hattori',
author_email='[email protected]',
url='https://github.com/hhatto/nude.py',
license='MIT',
platforms='Linux',
py_modules=['nude'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3'],
keywords="nude",
zip_safe=False,
install_requires=['pillow'],
entry_points={'console_scripts': ['nudepy = nude:main']},
)