forked from primal100/django_postgres_extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup, find_packages
import django_postgres_extensions
setup(name='django-postgres-extensions-ng',
version=django_postgres_extensions.__version__,
description="Extra features for django.contrib.postgres",
long_description=open('description.rst').read(),
author='ifanr',
author_email='[email protected]',
url='https://github.com/ifanrx/django_postgres_extensions',
packages=find_packages(exclude=['tests', 'tests.*']),
install_requires=[
'Django>=4.0',
'six'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Database',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)