-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.01 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
32
33
34
35
36
37
38
39
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import esus
setup(
name = 'esus',
version = esus.__versionstr__,
description = 'Esus',
long_description = '\n'.join((
'Esus',
'',
'discussion software for Django',
)),
author = 'Lukáš Linhart',
author_email='[email protected]',
license = 'BSD',
url='http://git.netcentrum.cz/projects/django/GIT/esus/',
packages = find_packages(
where = '.',
exclude = ('docs', 'tests')
),
include_package_data = True,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Django",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires = [
'setuptools>=0.6b1',
],
)