-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 696 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='django-metadata',
version='1.0',
url='https://github.com/rafaelsdm/django-metadata',
author='Rafael Sierra',
author_email='eu@rafaelsdm.com',
license='Free Use',
packages=['metadata'],
include_package_data=True,
description='This is a simple addon to your models, with this package you can add metadata to any of your models',
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"Environment :: Plugins",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: Freeware",
"Programming Language :: Python :: 2.7",
],
)