-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
50 lines (48 loc) · 1.56 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import flask_gnupg
setup(
name='Flask-GnuPG',
version=flask_gnupg.__version__,
author=flask_gnupg.__author__,
author_email=flask_gnupg.__email__,
maintainer=flask_gnupg.__author__,
maintainer_email=flask_gnupg.__email__,
url='https://github.com/EldarAliiev/flask-gnupg',
download_url='https://github.com/EldarAliiev/flask-gnupg/archive/master.zip',
license=flask_gnupg.__license__,
description='Flask extension for work with GnuPG',
long_description=open('README.rst').read(),
py_modules=['flask_gnupg'],
python_requires='>=3.4',
install_requires=[
'Flask>=0.12.2',
'python-gnupg>=0.4.1',
],
tests_require=[
'tox',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'License :: OSI Approved :: %s License' % flask_gnupg.__license__,
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=[
'Flask',
'GnuPG',
'PGP',
],
test_suite='tests',
zip_safe=False,
include_package_data=True
)