Commit 568d5561 by Piotr Mitros

distutils->setuptools

parent ca0e8abf
#!/usr/bin/env python #!/usr/bin/env python
from distutils.core import setup import os
from setuptools import setup
setup(name='django-pyfs', def read(fname):
version='1.0.3', return open(os.path.join(os.path.dirname(__file__), fname)).read()
description='Django pyfilesystem integration',
author='Piotr Mitros', setup(
author_email='pmitros@edx.org', name='django-pyfs',
url='http://mitros.org/p/', version='1.0.3',
packages=['djpyfs'], 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"),
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
],
)
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