Compare commits
No commits in common. "b119a8eee5c17e19492abf0218af945eb2a6785c" and "1868963b26b26b834b185bb4a81005f44fb45aa4" have entirely different histories.
b119a8eee5
...
1868963b26
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,2 @@
|
||||||
*~
|
|
||||||
*.pyc
|
*.pyc
|
||||||
rattail_fabric.egg-info/
|
rattail_fabric.egg-info/
|
||||||
|
|
11
README.md
11
README.md
|
@ -1,11 +0,0 @@
|
||||||
|
|
||||||
# rattail-fabric
|
|
||||||
|
|
||||||
Rattail is a retail software framework, released under the GNU General Public
|
|
||||||
License.
|
|
||||||
|
|
||||||
This package contains various utility functions for use with
|
|
||||||
[Fabric](http://www.fabfile.org/).
|
|
||||||
|
|
||||||
Please see Rattail's [home page](https://rattailproject.org/) for more
|
|
||||||
information.
|
|
14
README.rst
Normal file
14
README.rst
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
|
||||||
|
rattail-fabric
|
||||||
|
==============
|
||||||
|
|
||||||
|
Rattail is a retail software framework, released under the GNU General Public
|
||||||
|
License.
|
||||||
|
|
||||||
|
This package contains various utility functions for use with `Fabric`_.
|
||||||
|
|
||||||
|
.. _`Fabric`: http://www.fabfile.org/
|
||||||
|
|
||||||
|
Please see Rattail's `home page`_ for more information.
|
||||||
|
|
||||||
|
.. _`home page`: https://rattailproject.org/
|
2
setup.py
2
setup.py
|
@ -29,7 +29,7 @@ from setuptools import setup, find_packages
|
||||||
|
|
||||||
here = os.path.abspath(os.path.dirname(__file__))
|
here = os.path.abspath(os.path.dirname(__file__))
|
||||||
exec(open(os.path.join(here, 'rattail_fabric', '_version.py')).read())
|
exec(open(os.path.join(here, 'rattail_fabric', '_version.py')).read())
|
||||||
README = open(os.path.join(here, 'README.md')).read()
|
README = open(os.path.join(here, 'README.rst')).read()
|
||||||
|
|
||||||
|
|
||||||
requires = [
|
requires = [
|
||||||
|
|
Loading…
Reference in a new issue