-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.26 KB
/
setup.py
File metadata and controls
39 lines (36 loc) · 1.26 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
from setuptools import setup
setup(
name='lambda-typing',
version='0.1.0',
description="""Typehints for AWS Lambda""",
long_description=io.open("README.rst", 'r', encoding="utf-8").read(),
url='https://github.com/illagrenan/lambda-typing',
project_urls={
'Source': 'https://github.com/illagrenan/lambda-typing',
'Tracker': 'https://github.com/illagrenan/lambda-typing/issues',
},
license='MIT',
author='Vasek Dohnal',
author_email='vaclav.dohnal@gmail.com',
packages=['lambda_typing'],
install_requires=[],
python_requires='~=3.6',
include_package_data=True,
zip_safe=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy'
]
)