forked from jazzband/django-smart-selects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 759 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
with open('README.md', 'r') as f:
long_desc = f.read()
setup(name="django-smart-selects",
version="1.5.4b",
description="Django application to handle chained model fields.",
long_description=long_desc,
long_description_content_type='text/markdown',
author="Patrick Lauber",
author_email="digi@treepy.com",
url="https://github.com/jazzband/django-smart-selects",
packages=find_packages(),
include_package_data=True,
install_requires=["django>=1.8, <3.1", "six"],
tests_require=[
'flake8',
],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)