-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (28 loc) · 917 Bytes
/
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
from distutils.core import setup
with open('README.md') as f:
long_description = f.read()
setup(
# Application name:
name="Power Places Scraper",
# Version number (initial):
version="0.1.0",
# Application author details:
author="Powerplace",
author_email="developers@powerplace.io",
# Packages
packages=["power_places_scraper"],
# Include additional files into the package
include_package_data=True,
# Details
url="https://www.powerplace.io//",
description="Scraper to retrieve places from third party sources.",
long_description=long_description,
long_description_content_type='text/markdown',
entry_points={
'console_scripts': ['power_places_scraper=power_places_scraper.cli:main'],
},
# Dependent packages (distributions)
install_requires=[
"geojson", "overpy", "PySocks", "tqdm", "requests"
],
)