-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (27 loc) · 848 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
from setuptools import setup, find_packages
from utils.version import read_file, read_version
VERSION = read_version()
REQUIREMENTS = read_file('requirements.txt').splitlines()
DESCRIPTION = '''
Flexible Street View API Wrapper for Python
'''
LONG_DESCRIPTION = read_file('README.md')
setup(
name='sv-dlp',
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url='https://github.com/shmugoh/sv-dlp',
maintainer="shmugo",
maintainer_email="[email protected]",
packages=find_packages(exclude=('utils')),
python_requires='>=3.10', # thinking about making it 3.8
install_requires=REQUIREMENTS,
include_package_data=True,
entry_points={
'console_scripts': [
'sv-dlp=sv_dlp.__main__:main',
],
}
)