~dobey/dirspec/python3

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Rodney Dawes
  • Date: 2011-12-17 00:46:26 UTC
  • mto: This revision was merged to the branch mainline in revision 2.
  • Revision ID: rodney.dawes@canonical.com-20111217004626-0acfk0hg85ko9o3g
Add tests, and the implementation of the XDG Base Directory spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# -*- coding: utf-8 -*-
 
3
#
 
4
# Copyright 2011 Canonical Ltd.
 
5
#
 
6
# This program is free software: you can redistribute it and/or modify
 
7
# it under the terms of the GNU Lesser General Public License version 3
 
8
# as published by the Free Software Foundation.
 
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 Lesser General Public License for more details.
 
14
#
 
15
# You should have received a copy of the GNU Lesser General Public License
 
16
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
17
"""Setup and install dirspec."""
 
18
from distutils.core import setup
 
19
 
 
20
setup(
 
21
    name='dirspec',
 
22
    version='0.0.1',
 
23
    packages=['dirspec'],
 
24
    description='XDG Base and User directories implementation',
 
25
    url='https://launchpad.net/dirspec',
 
26
    )