-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 800 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import pathlib
from setuptools import setup, find_packages
setup(
name="scrapy-statsd-extension",
version="0.1.0",
url="https://github.com/scrapy-plugins/scrapy-statsd",
description="Scrapy extenstion to log stats to statsd",
long_description=(pathlib.Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
author="Scrapy developers",
license="BSD",
classifiers=[
"Framework :: Scrapy",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
packages=find_packages(exclude=("tests", "tests.*")),
install_requires=["Twisted", "Scrapy", "statsd-telegraf"],
)