-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (49 loc) · 1.98 KB
/
setup.py
File metadata and controls
53 lines (49 loc) · 1.98 KB
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
51
52
53
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-parser",
url="https://github.com/OpenIsraeliSupermarkets/israeli-supermarket-parsers",
author="Sefi Erlich",
author_email="erlichsefi@gmail.com",
# Needed to actually package something
packages=[
"il_supermarket_parsers",
"il_supermarket_parsers.documents",
"il_supermarket_parsers.engines",
"il_supermarket_parsers.parsers",
"il_supermarket_parsers.utils",
"il_supermarket_parsers.utils.data_loaders",
"il_supermarket_parsers.utils.output_writers",
"il_supermarket_parsers.utils.status",
],
# Needed for dependencies
install_requires=required,
tests_require=dev_required,
extras_require={"test": ["pytest", "pytest-xdist", "pytest-asyncio"]},
# *strongly* suggested for sharing
version="1.0.1",
# The license can be anything you like
license="CUSTOM",
description="python package that process the data dumped by the israeli supermarket",
# 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",
],
)