-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (32 loc) · 964 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='easy-pki',
version='0.1.0',
author='Tao Fei',
author_email='[email protected]',
url='https://pypi.python.org/pypi/easy-pki',
license='GPLv3',
description='A Simple Public-Key Infrastructure Manager',
long_description=open('README.md').read(),
install_requires=[
'PyYAML',
'docopt',
'jinja2'
],
packages=['easypki', 'ovpnconf'],
package_data={'ovpnconf': ['ovpnconf/templates/*', 'ovpnconf/defaults/*']},
entry_points = {
'console_scripts': [
'easy-pki = easypki.cli:main',
'ovpnconf-gen = ovpnconf.gen:main',
]
},
classifiers = [
'Development Status :: 3 - Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'License :: OSI Approved :: GPL License',
],
)