File: setup.py

package info (click to toggle)
python-pkginfo 1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 416 kB
  • ctags: 354
  • sloc: python: 1,487; makefile: 76
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)',
    ],
)