forked from nathforge/validatesns
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·43 lines (39 loc) · 1.28 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
#!/usr/bin/env python
import os.path
from setuptools import setup
ROOT = os.path.dirname(__file__)
setup(
version="0.9.0",
url="https://github.com/kenichi-ogawa-1988/validate_aws_sns_message",
name="validate_aws_sns_message",
description="Validate integrity of Amazon SNS messages (Refined)",
long_description_content_type="text/markdown",
long_description=open(os.path.join(ROOT, "README.md")).read(),
author="Ken'ichi Ogawa",
author_email="[email protected]",
packages=["validate_aws_sns_message"],
package_dir={"": os.path.join(ROOT, "src")},
test_suite="tests",
install_requires=[
line.strip()
for line in open(os.path.join(ROOT, "requirements.txt"))
if not line.startswith("#")
and line.strip() != ""
],
tests_require=[
"mock",
"oscrypto",
"six"
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4"
]
)