This repository has been archived by the owner on Nov 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
54 lines (49 loc) · 1.47 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
51
52
53
54
import io
from setuptools import find_packages, setup
with io.open('README.md', encoding='utf-8') as f:
long_description = f.read()
VERSION = '0.3.1'
PACKAGE = 'seattle-food-truck'
AUTHOR = 'clintval'
ARTIFACT = f'https://github.com/{AUTHOR}/{PACKAGE}/archive/v{VERSION}.tar.gz'
DESCRIPTION = """Python client for the glorious food trucks in Seattle"""
setup(
name=PACKAGE.replace('-', '_'),
packages=find_packages(),
version=VERSION,
description=(DESCRIPTION),
long_description=long_description,
long_description_content_type='text/markdown',
author=AUTHOR,
author_email='[email protected]',
download_url=ARTIFACT,
url=f'https://github.com/{AUTHOR}/{PACKAGE}',
py_modules=[PACKAGE],
install_requires=[
'click',
'geopy',
'lazy-property',
'python-dateutil',
'requests',
'requests_futures',
'terminaltables'
],
scripts=[
'scripts/sft',
],
license='MIT',
zip_safe=True,
keywords='seattle food truck',
project_urls={
'Seattle Food Truck': 'https://seattlefoodtruck.com/'
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)