File: setup.py

package info (click to toggle)
stdeb 0.10.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 824 kB
  • sloc: python: 2,149; sh: 191; makefile: 20
file content (12 lines) | stat: -rw-r--r-- 374 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup

setup(name='simple_pkg',
      packages=['simple_pkg'],
      version='0.1',
      author='Mister Unicodé',
      author_email='mister.unicode@example.tld',
      description='Python package with Unicodé fields',
      long_description='This is a Python package with Unicodé data.',
      )