forked from codekoala/django-articles
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (30 loc) · 1.1 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
from setuptools import setup, find_packages
from articles import __version__
setup(
name='django-articles',
version=__version__,
description='Sophisticated blogging engine for Django-powered sites',
long_description=open('README.rst', 'r').read(),
keywords='django, blog, blogging, engine',
author='Josh VanderLinden',
author_email='codekoala at gmail com',
url='http://bitbucket.org/codekoala/django-articles/',
license='BSD',
package_dir={'articles': 'articles'},
include_package_data=True,
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
],
zip_safe=False,
)