-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
27 lines (26 loc) · 877 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='nonude',
version='1.1.1',
description="Avoiding nude images in upload and its detection.",
author='GEAR Systems',
author_email='[email protected]',
url='https://github.com/gearsystems/nonude',
license='',
platforms='Linux/Mac',
py_modules=['nude'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Internet',
],
keywords="nude",
zip_safe=False,
download_url = 'https://github.com/gearsystems/nonude',
entry_points={'console_scripts': ['nonude = nude:main']},
)