-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (21 loc) · 786 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
requires = ['boltons>=18.0.1,<19.0.0', 'transitions>=0.6.9']
setuptools.setup(
name = "AutoscalingLifecycle",
version = "1.0.1",
author = "Jan Schumann",
author_email = "[email protected]",
description = "A library to handle aws autoscaling lifecycle events",
long_description = long_description,
long_description_content_type = "text/markdown",
install_requires = requires,
url = "https://github.com/7NXT/infrastructure-autoscaling-lifecycle",
packages = setuptools.find_packages(),
classifiers = (
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)