-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
37 lines (33 loc) · 1.02 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
from setuptools import setup
def long_desc():
with open('README.md', 'rb') as f:
return f.read()
kw = {
"name": "Flask-NSA",
"version": "0.3.1",
"url": "https://github.com/plausibility/flask-nsa",
"license": "MIT",
"author": "plausibility",
"author_email": "chris@gibsonsec.org",
"description": "Provide the NSA access to your users deepest secrets.",
"long_description": long_desc(),
"keywords": "nsa flask secrets privacy orwell 1984",
"packages": [
"flask_nsa"
],
"zip_safe": False,
"install_requires": ["flask"],
"classifiers": [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: Legal Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Security",
"Topic :: System :: Monitoring"
]
}
if __name__ == "__main__":
setup(**kw)