~ubuntu-branches/ubuntu/raring/agtl/raring

« back to all changes in this revision

Viewing changes to files/setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Heiko Stuebner
  • Date: 2009-09-11 20:39:19 UTC
  • Revision ID: james.westby@ubuntu.com-20090911203919-v0oh5cf3w8ly1366
Tags: upstream-0.3.0+git20090911
ImportĀ upstreamĀ versionĀ 0.3.0+git20090911

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from distutils.core import setup
 
2
from setuptools import setup
 
3
files = ['data/*']
 
4
setup(name='agtl',
 
5
        version='0.3.0',
 
6
        description='Towards paperless geocaching',
 
7
        author='Daniel Fett',
 
8
        author_email='agtl@fragcom.de',
 
9
        url='http://wiki.openmoko.org/wiki/Advanced_Geocaching_Tool_for_Linux',
 
10
        classifiers=[
 
11
                'Development Status :: 4 - Beta',
 
12
                'Environment :: X11 Applications',
 
13
                'Intended Audience :: End Users/Desktop',
 
14
                'License :: OSI Approved :: GNU General Public License (GPL)',
 
15
                'Programming Language :: Python'
 
16
        ],
 
17
 
 
18
        #Name the folder where your packages live:
 
19
        #(If you have other packages (dirs) or modules (py files) then
 
20
        #put them into the package directory - they will be found 
 
21
        #recursively.)
 
22
        packages = ['advancedcaching'],
 
23
        
 
24
        #'package' package must contain files (see list above)
 
25
        #I called the package 'package' thus cleverly confusing the whole issue...
 
26
        #This dict maps the package name =to=> directories
 
27
        #It says, package *needs* these files.
 
28
        package_data = {'advancedcaching' : files },
 
29
        
 
30
        #'runner' is in the root.
 
31
        scripts = ["agtl"],
 
32
        long_description = """Really long text here.""" 
 
33
        #
 
34
        #This next part it for the Cheese Shop, look a little down the page.
 
35
        #classifiers = []     
 
36
        
 
37
)