-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
26 lines (23 loc) · 825 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
26
# coding=utf-8
from setuptools import find_packages, setup
VERSION = __import__("logicaldelete").__version__
setup(
name='django-logicaldelete',
version=VERSION,
author=u'Angel Velasquez, Agustín Cangiani',
author_email='[email protected], [email protected]',
url='http://www.routeatlas.com',
description=u' '.join(__import__('logicaldelete').__doc__.splitlines()).strip(),
long_description=open("README.rst").read(),
packages=find_packages(),
license="BSD",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)