-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (27 loc) · 1.02 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
from distutils.core import setup
from setuptools import find_packages
from dynamic_manipulation import VERSION
setup(
name="django-dynamic-manipulation",
version=VERSION,
author="imtapps",
author_email="[email protected]",
description="Record rule based dynamic manipulations.",
long_description=file('README.txt', 'r').read(),
url="https://github.com/imtapps/django-dynamic-manipulation",
packages=find_packages(exclude=["example"]),
install_requires=file('requirements/dist.txt', 'r').read(),
zip_safe=False,
include_package_data=True,
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",
]
)