123456789101112131415161718192021222324252627282930313233343536373839 |
- import os
- from setuptools import find_packages, setup
- with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
- README = readme.read()
- # allow setup.py to be run from any path
- os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
- setup(
- name='django-truncate',
- version='0.1',
- packages=find_packages(),
- include_package_data=True,
- license='BSD License',
- description='A simple Django app to help developers truncate specific models.',
- long_description=README,
- url='https://github.com/KhaledElAnsari/django-truncate',
- author='Khaled Al-Ansari',
- author_email='khaledelansari@gmail.com',
- classifiers=[
- 'Environment :: Web Environment',
- 'Framework :: Django',
- 'Framework :: Django :: 1.9',
- 'Framework :: Django :: 1.8',
- 'Framework :: Django :: 1.7',
- 'Intended Audience :: Developers',
- 'License :: OSI Approved :: BSD License',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 2',
- 'Programming Language :: Python :: 2.7',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Topic :: Internet :: WWW/HTTP',
- 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
- ],
- )
|