-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·43 lines (38 loc) · 1.18 KB
/
setup.py
File metadata and controls
executable file
·43 lines (38 loc) · 1.18 KB
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
37
38
39
40
41
42
43
# -*- coding: utf-8 -
#
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.
import os
from setuptools import setup, find_packages
setup(
name = 'django-commitlog',
version = "0.1",
description = 'Preview your git commits.',
long_description = file(
os.path.join(
os.path.dirname(__file__),
'README.rst'
)
).read(),
author = 'Kamil Selwa',
author_email = 'selwak@gmail.com',
license = 'MIT',
url = 'http://selwa.info',
classifiers = [
'Development Status :: 1 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: POSIX',
'Programming Language :: Python',
'Framework :: Django',
'Topic :: Internet',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe = False,
packages = find_packages(exclude=['examples', 'tests']),
#include_package_data = True,
#package_data={'backfire': media_dirs},
install_requires=['setuptools'],
)