forked from leonardcser/auto24-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (25 loc) · 707 Bytes
/
setup.py
File metadata and controls
31 lines (25 loc) · 707 Bytes
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
from setuptools import setup
def readme():
with open("README.md") as f:
return f.read()
def requirements():
with open("requirements/requirements.txt") as f:
return list(f.readlines())
setup(
name="auto24_api",
version="0.0.1",
description="Python API wrapper for AutoScout24.ch",
long_description=readme(),
long_description_content_type="text/markdown",
install_requires=requirements(),
url="https://github.com/leonardcser/auto24-api",
author="Leonard C.",
packages=[
"auto24_api",
"auto24_api.utils",
"auto24_api.search",
"auto24_api.search.enums",
"auto24_api.details",
],
classifiers=[],
)