Commit 7121674d by Piotr Mitros

MANIFEST.in

parent 9b8c3e0f
......@@ -52,3 +52,5 @@ coverage.xml
# Sphinx documentation
docs/_build/
# Emacs backups
*~
\ No newline at end of file
include README.md
recursive-include djpyfs *py
recursive-include example *py
\ No newline at end of file
......@@ -3,19 +3,23 @@
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
fname = os.path.join(os.path.dirname(__file__), "README.md")
if os.path.exists(fname):
ld = open(fname).read()
else:
ld = "Django pyfilesystem integration"
setup(
name='django-pyfs',
version='1.0.3a',
version='1.0.4',
description='Django pyfilesystem integration',
author='Piotr Mitros',
author_email='pmitros@edx.org',
packages=['djpyfs'],
license = "AGPLv3",
url = "https://github.com/edx/django-pyfs",
long_description = read("README.md"),
long_description = ld,
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment