-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
40 lines (35 loc) · 1.19 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
from setuptools import setup
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
# Meta
author='Steven Englehardt',
author_email='[email protected]',
description='Tools for parsing crawl data generated by OpenWPM',
name='openwpm-utils',
license='MPL 2.0',
url='https://github.com/mozilla/openwpm-utils',
version='0.2.0',
packages=['openwpm_utils'],
# Dependencies
install_requires=requirements,
setup_requires=['setuptools_scm',],
# Packaging
include_package_data=True,
use_scm_version=False,
zip_safe=False,
# Classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment :: Mozilla',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Scientific/Engineering :: Information Analysis'
],
)