-
Notifications
You must be signed in to change notification settings - Fork 227
/
setup.py
89 lines (77 loc) · 2.41 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
"""This module contains setup instructions for python-lambda."""
import codecs
import os
import sys
from shutil import rmtree
from setuptools import Command
from setuptools import find_packages
from setuptools import setup
REQUIREMENTS = [
"boto3>=1.4.4",
"click>=6.6",
"PyYAML==5.1",
]
PACKAGE_DATA = {
"aws_lambda": ["project_templates/*"],
"": ["*.json"],
}
THIS_DIR = os.path.abspath(os.path.dirname(__file__))
README = os.path.join(THIS_DIR, "README.md")
with codecs.open(README, encoding="utf-8") as fh:
long_description = "\n" + fh.read()
class UploadCommand(Command):
"""Support setup.py publish."""
description = "Build and publish the package."
user_options = []
@staticmethod
def status(s):
"""Print in bold."""
print(f"\033[1m{s}\033[0m")
def initialize_options(self):
"""Initialize options."""
pass
def finalize_options(self):
"""Finialize options."""
pass
def run(self):
"""Upload release to Pypi."""
try:
self.status("Removing previous builds ...")
rmtree(os.path.join(THIS_DIR, "dist"))
except Exception:
pass
self.status("Building Source distribution ...")
os.system(f"{sys.executable} setup.py sdist")
self.status("Uploading the package to PyPI via Twine ...")
os.system("twine upload dist/*")
sys.exit()
setup(
name="python-lambda",
version="11.8.0",
author="Nick Ficano",
author_email="nficano@gmail.com",
packages=find_packages(),
url="https://github.com/nficano/python-lambda",
license="ISCL",
install_requires=REQUIREMENTS,
package_data=PACKAGE_DATA,
test_suite="tests",
tests_require=[],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
description="The bare minimum for a Python app running on Amazon Lambda.",
include_package_data=True,
long_description_content_type="text/markdown",
long_description=long_description,
zip_safe=True,
cmdclass={"upload": UploadCommand},
scripts=["scripts/lambda"],
)