36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
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='jeweller-extend',
|
|
version='0.2.2',
|
|
package_dir={'extend': 'extend'},
|
|
packages=find_packages(),
|
|
include_package_data=True,
|
|
license='BSD License',
|
|
description='Small collection of reusabled components for Django.',
|
|
long_description=README,
|
|
url='https://github.com/stargot/jeweller-extend/',
|
|
author='Ivan Sinyavskiy',
|
|
author_email='stargot@gmail.com',
|
|
classifiers=[
|
|
'Environment :: Web Environment',
|
|
'Framework :: Django',
|
|
'Framework :: Django :: 4.2',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: BSD License',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 3.10',
|
|
'Programming Language :: Python :: 3.11',
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
],
|
|
)
|