forked from e1ven/Robohash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.11 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
39
40
41
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst', encoding='utf-8') as file:
long_description = file.read()
setup(
name='robohash',
packages=['robohash'],
version='1.0',
description='One of the leading robot-based hashing tools on the web',
long_description=long_description,
author='e1ven',
author_email='[email protected]',
url='https://github.com/e1ven/Robohash',
download_url='https://github.com/e1ven/Robohash/tarball/1.0',
keywords=['robots'], # arbitrary keywords
license='MIT',
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Security",
],
package_data={
'robohash': [
'sets/set1/*/*/*',
'sets/set2/*/*',
'sets/set3/*/*',
'sets/set4/*/*',
'sets/set5/*/*',
'backgrounds/*/*',
]
},
install_requires=['pillow', 'natsort'],
extras_require={
'web': ['tornado'],
},
)