File: setup.py

package info (click to toggle)
python-pkginfo 1.12.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 980 kB
  • sloc: python: 2,142; makefile: 84; sh: 14
file content (13 lines) | stat: -rw-r--r-- 309 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
from setuptools import setup

setup(
    name='mypackage',
    version='0.1',
    author='Tres Seaver',
    author_email='tseaver@palladion.com',
    url='http://pypi.python.org/pypi/pkginfo',
    classifiers=[
        'Development Status :: 4 - Beta',
        'Environment :: Console (Text Based)',
    ],
)