forked from Shopify/pyreferrer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (27 loc) · 971 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
29
30
from setuptools import setup
VERSION = '0.6.3' # maintained by release tool
setup(
name="pyreferrer",
version=VERSION,
description="A referrer parser for Python.",
url="http://github.com/Shopify/pyreferrer",
author="Shopify Data Acceleration",
author_email="[email protected]",
license="MIT",
packages=["pyreferrer"],
package_data={"pyreferrer": ["data/*"]},
install_requires=["tldextract==2.0.2", "six==1.11.0"],
extras_require={"test": ["nose"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
include_package_data=True,
zip_safe=False,
)