-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
34 lines (26 loc) · 860 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import uniout
setup(
name = 'uniout',
version = uniout.__version__,
description = 'Never see escaped bytes in output.',
long_description = open('README.rst').read(),
author = 'Mosky',
url = 'https://github.com/moskytw/uniout',
author_email = 'mosky.tw@gmail.com',
license = 'MIT',
platforms = 'any',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
'Topic :: Software Development :: Libraries :: Python Modules',
],
py_modules = ['_uniout', 'uniout'],
)