-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
32 lines (29 loc) · 867 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
from setuptools import setup
setup(
name="aws-arn",
version="0.0.20",
description="A library to work with AWS ARNs",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=["aws_arn"],
install_requires=[],
entry_points={
"console_scripts": [
"aws-arn = aws_arn:main",
],
},
author="Gabriel Alejandro Soltz",
author_email="[email protected]",
project_urls={
"Source code": "https://github.com/gabrielsoltz/aws-arn",
},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)
# python3 setup.py sdist bdist_wheel
# twine upload dist/*