-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (29 loc) · 888 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
import os
from setuptools import setup, find_packages
def read(filename):
path = os.path.join(os.path.dirname(__file__), filename)
with open(path, 'r') as f:
return f.read()
install_requires = [
'marshmallow-jsonschema',
]
extras_require = {
'chalice': ['chalice==1.13.0'],
}
setup(
name='leangle',
version='0.2.2',
description='Add response descriptions to chalice',
long_description=read('README.rst'),
author='Joshua Fehler',
url='https://github.com/jsfehler/leangle',
packages=find_packages(),
install_requires=install_requires,
extras_require=extras_require,
license='GNU General Public License v3.0',
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)