~ubuntuone-pqm-team/python-oops/stable

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Robert Collins
  • Date: 2011-08-10 05:06:50 UTC
  • Revision ID: robertc@robertcollins.net-20110810050650-umw1rxuwimir8y8r
Initial project skeleton.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
#
 
3
# Copyright (c) 2011, Canonical Ltd
 
4
#
 
5
# This program is free software: you can redistribute it and/or modify
 
6
# it under the terms of the GNU Affero General Public License as published by
 
7
# the Free Software Foundation, either version 3 of the License, or
 
8
# (at your option) any later version.
 
9
#
 
10
# This program is distributed in the hope that it will be useful,
 
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
# GNU Affero General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU Affero General Public License
 
16
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
  
 
18
 
 
19
from distutils.core import setup
 
20
import os.path
 
21
 
 
22
description = file(os.path.join(os.path.dirname(__file__), 'README'), 'rb').read()
 
23
 
 
24
setup(name="oops",
 
25
      version="0.0.1",
 
26
      description="OOPS report model and default allocation/[de]serialization.",
 
27
      long_description=description,
 
28
      maintainer="Launchpad Developers",
 
29
      maintainer_email="launchpad-dev@lists.launchpad.net",
 
30
      url="https://launchpad.net/python-oops",
 
31
      packages=['oops'],
 
32
      package_dir = {'':'.'},
 
33
      classifiers = [
 
34
          'Development Status :: 2 - Pre-Alpha',
 
35
          'Intended Audience :: Developers',
 
36
          'License :: OSI Approved :: GNU Affero General Public License v3',
 
37
          'Operating System :: OS Independent',
 
38
          'Programming Language :: Python',
 
39
          ],
 
40
      install_requires = [
 
41
          ],
 
42
      extras_require = dict(
 
43
          test=[
 
44
              'testtools',
 
45
              ]
 
46
          ),
 
47
      )