-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (47 loc) · 1.79 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / 'README.md').read_text(encoding='utf-8')
VERSION = (here / 'RELEASE-VERSION.txt').read_text(encoding='utf-8')[:-1]
if not VERSION:
raise ValueError("Unable to get version from git")
setup(
name='pypwext',
python_requires='>=3.8, <4',
package_dir={"": "pypwext"},
packages=find_packages(where="pypwext"),
version=VERSION,
license='APACHE 2.0',
author='Mario Toffia',
author_email='[email protected]',
maintainer='Mario Toffia',
maintainer_email='[email protected]',
description='Extension and Decorator for the AWS Lambda Powertools Library',
long_description=long_description,
long_description_content_type='text/markdown',
project_urls={
'Source': 'https://github.com/mariotoffia/pypwext',
'Documentation': 'https://github.com/mariotoffia/pypwext',
'Tracker': 'https://github.com/mariotoffia/pypwext/issues',
},
download_url=f'https://github.com/mariotoffia/pypwext/archive/refs/tags/{VERSION}.tar.gz',
url='https://github.com/mariotoffia/pypwext',
install_requires=[
'chardet'
'aws-requests-auth',
'aws-lambda-powertools',
'boto3',
'botocore',
'email-validator',
'pydantic'
],
keywords=['AWS', 'Lambda', 'Library', 'Decorator'],
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
"Programming Language :: Python :: 3", # "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
"License :: OSI Approved :: MIT License",
'License :: OSI Approved :: Apache Software License',
"Operating System :: OS Independent",
],
)