-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
35 lines (31 loc) · 1.1 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
from setuptools import find_packages, setup
from city_scrapers_core import __version__
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="city-scrapers-core",
version=__version__,
license="MIT",
author="City Bureau",
author_email="[email protected]",
description="Core functionality for City Scrapers projects",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/City-Bureau/city-scrapers-core",
packages=find_packages(),
package_data={"": ["*"], "city_scrapers_core": ["templates/*"]},
install_requires=["jsonschema>=3.0.0a5", "pytz", "requests", "scrapy"],
tests_require=["flake8", "pytest", "isort"],
extras_require={
"aws": ["boto3"],
"azure": ["azure-storage-blob>=12"],
"gcs": ["google-cloud-storage"],
},
python_requires=">=3.6,<4.0",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Scrapy",
],
)