-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (37 loc) · 1.32 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
import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), "README.rst")).read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="le-client",
version="0.2",
packages=["le_client"],
include_package_data=True,
license="GNU GPLv3+",
description="Yet another simple Let's Encrypt/ACME client",
long_description=README,
maintainer="Aleksey Zhukov",
maintainer_email="[email protected]",
url="https://github.com/drdaeman/le_client",
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
"Topic :: Security :: Cryptography",
],
entry_points={
"console_scripts": [
"le_client = le_client.__main__:run"
]
},
test_suite="le_client.tests"
)