-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.03 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
import sys
from pathlib import Path
from setuptools import setup, find_packages
if sys.version_info.major != 3:
raise RuntimeError("This package requires Python 3+")
version = '0.0.2'
pkg_name = 'awspydk'
gitrepo = 'trisongz/aws-sdk'
root = Path(__file__).parent
requirements = [
'boto3',
'lazycls'
]
args = {
'packages': find_packages(include = ['aws', 'aws.*']),
'install_requires': requirements,
'long_description': root.joinpath('README.md').read_text(encoding='utf-8'),
'entry_points': {}
}
setup(
name=pkg_name,
version=version,
url=f'https://github.com/{gitrepo}',
license='MIT Style',
description='Async boto3 with Autogenerated JIT Data Classes',
author='Tri Songz',
author_email='[email protected]',
long_description_content_type="text/markdown",
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
],
**args
)