File: setup.py

package info (click to toggle)
python-xmlbuilder 1.0-1~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 100 kB
  • sloc: python: 338; makefile: 27
file content (12 lines) | stat: -rw-r--r-- 340 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
from setuptools import setup, find_packages

setup(
    name='xmlbuilder',
    version='1.0',
    description="pythonic way to crate xml/(x)html files",
    author='Kostiantyn Danylov aka koder',
    author_email='koder.mail@gmail.com',
    packages=find_packages(),
    license='LGPL v3',
    long_description=open('README.txt').read(),
)