Skeletonise KeDiFa
Use versioneer. Add basic README. Create structure.
parents
Showing
.gitattributes
0 → 100644
MANIFEST.in
0 → 100644
README.rst
0 → 100644
kedifa/_version.py
0 → 100644
This diff is collapsed.
setup.cfg
0 → 100644
setup.py
0 → 100644
# Copyright (C) 2018 Nexedi | |||
# Lukasz Nowak <luke@nexedi.com> | |||
# | |||
# KeDiFa is free software: you can redistribute it and/or modify | |||
# it under the terms of the GNU General Public License as published by | |||
# the Free Software Foundation, either version 3 of the License, or | |||
# (at your option) any later version. | |||
# | |||
# KeDiFa is distributed in the hope that it will be useful, | |||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |||
# GNU General Public License for more details. | |||
# | |||
# You should have received a copy of the GNU General Public License | |||
# along with KeDiFa. If not, see <http://www.gnu.org/licenses/>. | |||
|
|||
from setuptools import setup, find_packages | |||
import versioneer | |||
setup( | |||
name='kedifa', | |||
version=versioneer.get_version(), | |||
cmdclass=versioneer.get_cmdclass(), | |||
author='Lukasz Nowak', | |||
author_email='luke@nexedi.com', | |||
description="KEy DIstribution FAcility", | |||
classifiers=[ | |||
'Environment :: Console', | |||
'Environment :: Web Environment', | |||
'Intended Audience :: System Administrators', | |||
'Intended Audience :: Information Technology', | |||
'License :: OSI Approved :: GNU General Public License v3 or ' | |||
'later (GPLv3+)', | |||
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application', | |||
], | |||
keywords='key distribution ssl', | |||
url='https://lab.nexedi.com/luke/kedifa', | |||
license='GPLv3+', | |||
packages=find_packages(), | |||
install_requires=[ | |||
], | |||
zip_safe=True, | |||
) |
versioneer.py
0 → 100644
This diff is collapsed.