-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
28 lines (25 loc) · 855 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
import os
import boto3
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="botostubs",
version=os.environ['CODE_VERSION'] + "." + boto3.__version__,
author="Jeshan G. BABOOA",
author_email="[email protected]",
description="boto3 code assistance for any API in any IDE, always up to date",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jeshan/botostubs",
packages=setuptools.find_packages(),
package_data={"botostubs": ["py.typed"]},
zip_safe=False,
license='BSD-2-Clause',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)