-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (51 loc) · 1.39 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
import subprocess
from os import path
from setuptools import setup, find_packages
# Root directory of the project
project_dir = path.dirname(__file__)
setup(
name='acme-simple',
use_scm_version={'write_to': path.join(project_dir, 'acme_simple', 'VERSION.txt')},
description="A simple script to issue and renew TLS certs from Let's Encrypt",
long_description='',
long_description_content_type='text/markdown; charset=UTF-8',
url='https://github.com/rspeed/acme-simple',
author='Rob Speed',
author_email='[email protected]',
packages=find_packages(exclude=[
'tests',
'tests.*'
]),
package_data={
'acme-simple': ['VERSION.txt']
},
include_package_data=True,
setup_requires=['setuptools_scm'],
tests_require=['coveralls'],
extras_require = {
'distribution': [
'wheel',
'setuptools_scm'
]
},
entry_points={
'console_scripts': [
'acme-simple = acme_simple.__main__:main'
]
},
license='MIT',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.5'
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Internet :: WWW/HTTP'
]
)