forked from datamade/django-proxy-overrides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 851 Bytes
/
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
from setuptools import setup, find_packages
from proxy_overrides import VERSION
README = open('README.rst').read()
setup(
name='django-proxy-overrides',
version='.'.join(map(str, VERSION)),
description='Overridable foreign key fields for Proxy models',
long_description=README,
url='https://github.com/datamade/django-proxy-overrides',
author='Matthew Schinckel',
author_email='[email protected]',
maintainer='Forest Gregg',
maintainer_email='[email protected]',
packages=find_packages(exclude=('tests*',)),
install_requires=['Django'],
test_suite='runtests.runtests',
classifiers=[
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3 :: Only',
'Framework :: Django',
'Topic :: Software Development :: Libraries :: Python Modules'],
)