-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
32 lines (30 loc) · 1.12 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
31
32
from distutils.core import setup
from setuptools import find_packages
TEST_REQUIREMENTS = [
]
setup(
name="django-dynamic-rules",
version="1.0.3",
author="IMT Computer Services",
author_email="[email protected]",
description="Allows you to create dynamic rules related to a particular model",
long_description=open('README.txt', 'r').read(),
url="https://github.com/imtapps/django-dynamic-rules",
packages=find_packages(exclude=["example"]),
install_requires=file('requirements/dist.txt').read().split('\n'),
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
dependency_links=(
'https://bitbucket.org/twanschik/django-autoload/get/tip.tar.gz#egg=django-autoload',
),
)