-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
50 lines (46 loc) · 1.81 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
from io import open
from setuptools import setup
with open("README.md", encoding="utf-8") as f:
long_description = "\n" + f.read()
with open("requirements.txt", encoding="utf-8") as f:
required = f.read().splitlines()
with open("requirements-dev.txt", encoding="utf-8") as f:
dev_required = f.read().splitlines()
setup(
# Needed to silence warnings (and to be a worthwhile package)
name="il-supermarket-scraper",
url="https://github.com/OpenIsraeliSupermarkets/israeli-supermarket-scarpers",
author="Sefi Erlich",
author_email="[email protected]",
# Needed to actually package something
packages=[
"il_supermarket_scarper",
"il_supermarket_scarper.engines",
"il_supermarket_scarper.scrappers",
"il_supermarket_scarper.utils",
"il_supermarket_scarper.utils.databases",
],
# Needed for dependencies
install_requires=required,
tests_require=dev_required,
extras_require={"test": ["pytest", "pytest-xdist"]},
# *strongly* suggested for sharing
version="0.5.4",
# The license can be anything you like
license="MIT",
description="python package that implement a scraping for israeli supermarket data",
# We will also need a readme eventually (there will be a warning)
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["israel", "israeli", "scraper", "supermarket"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
],
)