-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.43 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 python3
# coding: utf-8
import os
from setuptools import setup
setup(
name = "pinecone",
version = "0.2.1",
author = u"Pinecrypt Labs",
author_email = "[email protected]",
description = "Pinecrypt Gateway",
license = "MIT",
keywords = "falcon http jinja2 x509 pkcs11 webcrypto kerberos ldap",
url = "http://github.com/laurivosandi/certidude",
packages=[
"pinecrypt.server",
"pinecrypt.server.api",
"pinecrypt.server.api.utils"
],
long_description=open("README.md").read(),
# Include here only stuff required to run certidude client
install_requires=[
"asn1crypto",
"click",
"configparser",
"certbuilder",
"csrbuilder",
"crlbuilder",
"jinja2",
],
scripts=[
"misc/pinecone"
],
include_package_data = True,
package_data={
"pinecrypt": ["pinecrypt/server/templates/*", "pinecrypt/server/builder/*"],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: Freely Distributable",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
],
)