-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (33 loc) · 1.2 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
import io
from os.path import join, dirname
from setuptools import setup, find_packages
with open('README.md', encoding='utf8') as f:
long_description = f.read()
setup(
name='sdk-ifood',
version='1.0.0.alpha.22',
license='MIT',
author='Micael Duarte',
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
install_requires=['requests'],
description='SDK com as features da API do IFood',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/etraudm/sdk-ifood-python.git',
project_urls={
'Código fonte': 'https://github.com/etraudm/sdk-ifood-python.git'
},
keywords='sdk ifood python api merchant financial catalog order developer',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: Portuguese (Brazilian)',
'Operating System :: OS Independent',
'Topic :: Software Development :: Internationalization',
'Topic :: Scientific/Engineering :: Physics'
]
)