mirror of
https://github.com/SectorLabs/django-localized-fields.git
synced 2025-04-25 11:42:54 +03:00
Added a simple setup.py file
This commit is contained in:
parent
1cd15f46ef
commit
226f107ae3
31
setup.py
Normal file
31
setup.py
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
import os
|
||||||
|
|
||||||
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
|
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
|
||||||
|
README = readme.read()
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='django-localized-fields',
|
||||||
|
version='1.0',
|
||||||
|
packages=find_packages(),
|
||||||
|
include_package_data=True,
|
||||||
|
license='MIT License',
|
||||||
|
description='Implementation of localized model fields using PostgreSQL HStore fields.'
|
||||||
|
long_description=README,
|
||||||
|
url='http://sectorlabs.ro/',
|
||||||
|
author='Sector Labs',
|
||||||
|
author_email='open-source@sectorlabs.ro',
|
||||||
|
classifiers=[
|
||||||
|
'Environment :: Web Environment',
|
||||||
|
'Framework :: Django',
|
||||||
|
'Framework :: Django :: X.Y',
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'License :: OSI Approved :: MIT License',
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
'Programming Language :: Python',
|
||||||
|
'Programming Language :: Python :: 3.5',
|
||||||
|
'Topic :: Internet :: WWW/HTTP',
|
||||||
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
||||||
|
]
|
||||||
|
)
|
Loading…
x
Reference in New Issue
Block a user