Commit 7121674d by Piotr Mitros

MANIFEST.in

parent 9b8c3e0f
...@@ -52,3 +52,5 @@ coverage.xml ...@@ -52,3 +52,5 @@ coverage.xml
# Sphinx documentation # Sphinx documentation
docs/_build/ 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 @@ ...@@ -3,19 +3,23 @@
import os import os
from setuptools import setup from setuptools import setup
def read(fname): fname = os.path.join(os.path.dirname(__file__), "README.md")
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if os.path.exists(fname):
ld = open(fname).read()
else:
ld = "Django pyfilesystem integration"
setup( setup(
name='django-pyfs', name='django-pyfs',
version='1.0.3a', version='1.0.4',
description='Django pyfilesystem integration', description='Django pyfilesystem integration',
author='Piotr Mitros', author='Piotr Mitros',
author_email='pmitros@edx.org', author_email='pmitros@edx.org',
packages=['djpyfs'], packages=['djpyfs'],
license = "AGPLv3", license = "AGPLv3",
url = "https://github.com/edx/django-pyfs", url = "https://github.com/edx/django-pyfs",
long_description = read("README.md"), long_description = ld,
classifiers = [ classifiers = [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules", "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