-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.06 KB
/
setup.py
File metadata and controls
41 lines (36 loc) · 1.06 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
# -*- coding: utf-8 -*-
# Copyright 2015-TODAY LasLabs Inc.
# License MIT (https://opensource.org/licenses/MIT).
from setuptools import setup
from setuptools import find_packages
from tests import Tests
setup_vals = {
'name': 'cfssl',
'version': '0.0.1',
'author': 'LasLabs Inc.',
'author_email': '[email protected]',
'description': 'This library will allow you to interact with CFSSL '
'using Python.',
'url': 'https://github.com/laslabs/Python-CFSSL',
'license': 'MIT',
'classifiers': [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
}
setup(
packages=find_packages(exclude=('tests')),
cmdclass={'test': Tests},
tests_require=[
'mock',
],
install_requires=[
'requests',
],
**setup_vals
)