File: setup.py

package info (click to toggle)
python-goopy 0.1-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 60 kB
  • ctags: 40
  • sloc: python: 230; makefile: 52
file content (13 lines) | stat: -rwxr-xr-x 316 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

from distutils.core import setup

setup(name='goopy',
      version='0.1',
      description='Google Python Utilities',
      license='BSD',
      author='Google Inc.',
      author_email='opensource@google.com',
      url='http://goog-goopy.sourceforge.net',
      packages=['goopy'],
     )