-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (31 loc) · 987 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
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from featured import __version__
from run_tests import TestCommand
version = ".".join(map(str, __version__))
setup(
name='django-featured-objects',
version=version,
description='Django app for making any object featured',
author='Pedro Buron',
author_email='[email protected]',
long_description=open('README.md', 'r').read(),
url='http://desarrollo.witoi.com/',
packages=[
'featured',
'featured.migrations',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
requires=['Django (>=1.3)'],
cmdclass={'test': TestCommand}
)