forked from whotracksme/whotracks.me
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
72 lines (68 loc) · 1.82 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
from setuptools import setup, find_packages
from os import path
HERE = path.abspath(path.dirname(__file__))
LONG_DESCRIPTION = ''
with open(path.join(HERE, 'README.md')) as readme_file:
LONG_DESCRIPTION = readme_file.read()
setup(
name='whotracksme',
version='2017.11',
description='Learn about tracking technologies, market structure and data-sharing on the web',
long_description=LONG_DESCRIPTION,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Internet',
'Topic :: Scientific/Engineering :: Information Analysis',
],
keywords='tracking whotracksme whotracks.me',
url='https://whotracks.me',
author='Cliqz Gmbh',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=[
'_site',
'blog',
'contrib',
'data',
'static',
'templates',
'tests',
]),
install_requires=[
'docopt',
],
extras_require={
'website': [
'colour',
'jinja2',
'markdown',
'plotly',
'sanic',
'squarify',
'watchdog',
],
'test': [
'pytest',
],
},
package_data={
'whotracksme': [
'data/assets/*.json',
'data/assets/*.sql',
],
},
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'whotracksme=whotracksme.main:main',
],
},
)