-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·45 lines (41 loc) · 1.17 KB
/
setup.py
File metadata and controls
executable file
·45 lines (41 loc) · 1.17 KB
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
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
version = '0.0.1'
install_requires = [
'flask',
'pykcs11',
'retrying',
'six',
]
setup(name='pyeleven',
version=version,
description="p11 proxy",
long_description=README,
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='pkcs11 sign encrypt',
author='Leif Johansson',
author_email='leifj@sunet.se',
url='http://blogs.mnt.se',
license='BSD',
setup_requires=['nose>=1.0'],
tests_require=['nose>=1.0', 'mock'],
test_suite="nose.collector",
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points={
'console_scripts': ['pyeleven=pyeleven:main']
},
message_extractors={'src': [
('**.py', 'python', None),
('**/templates/**.html', 'mako', None),
]},
)