Skip to content

Commit

Permalink
Initialize etcdfs package
Browse files Browse the repository at this point in the history
Signed-off-by: Christos Stavrakakis <[email protected]>
  • Loading branch information
cstavr committed Feb 18, 2018
0 parents commit 0e2fa2c
Show file tree
Hide file tree
Showing 9 changed files with 105 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
build/*
dist/*
*.egg-info
*.pyc
5 changes: 5 additions & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
=======
AUTHORS
=======

* Christos Stavrakakis <[email protected]>
28 changes: 28 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
BSD License

Copyright (c) 2018, Christos Stavrakakis <[email protected]>

Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright notice, this
list of conditions and the following disclaimer in the documentation and/or
other materials provided with the distribution.

* Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
OF THE POSSIBILITY OF SUCH DAMAGE.
7 changes: 7 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
include README.rst
include AUTHORS.rst
include LICENSE

recursive-include tests *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
10 changes: 10 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
================================
etcdfs: Filesystem based on etcd
================================

A simple FUSE filesystem based on etcd.

License
-------

Free software: BSD license
6 changes: 6 additions & 0 deletions etcdfs/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# -*- coding: utf-8 -*-
"""etcdfs package."""

__author__ = """Christos Stavrakakis"""
__email__ = '[email protected]'
__version__ = '0.1.0'
2 changes: 2 additions & 0 deletions etcdfs/etcdfs.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
40 changes: 40 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-

from setuptools import setup, find_packages

with open('README.rst') as f:
readme = f.read()

requirements = [
]

setup_requirements = [
]

test_requirements = [
]

setup(
name='etcdfs',
version='0.1.0',
description="Filesystem based on etcd",
long_description=readme,
author="Christos Stavrakakis",
author_email='[email protected]',
url='https://github.com/cstavr/etcdfs',
packages=find_packages(include=['etcdfs']),
include_package_data=True,
install_requires=requirements,
license="BSD license",
zip_safe=False,
keywords='etcdfs',
classifiers=[
'License :: OSI Approved :: BSD License',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
],
test_suite='tests',
tests_require=test_requirements,
setup_requires=setup_requirements,
)
3 changes: 3 additions & 0 deletions tests/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# -*- coding: utf-8 -*-

"""Unit tests for etcdfs."""

0 comments on commit 0e2fa2c

Please sign in to comment.