-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
44 lines (42 loc) · 1019 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
40
41
42
from setuptools import setup, find_packages
setup(
name="SCEPy",
version="0.1",
description="SCEPy is a pure python SCEP server implementation",
packages=['scepy'],
include_package_data=True,
author="mosen",
license="MIT",
url="https://github.com/cmdmnt/SCEPy",
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'
],
keywords='SCEP',
install_requires=[
'asn1crypto>=0.22.0'
'cryptography>=1.8.1',
'Flask',
'oscrypto>=0.18.0',
'requests>=2.13.0'
],
python_requires='>=3.5',
tests_require=[
'pytest',
'mock'
],
extras_requires={
'ReST': [
'Sphinx',
'sphinxcontrib-napoleon'
]
},
setup_requires=['pytest-runner'],
entry_points={
'console_scripts': [
'scepyclient=scepy.client:main',
]
},
zip_safe=False
)