-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (24 loc) · 868 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
from distutils.core import setup
from enhancedyaml import __version__
setup(
name = 'enhancedyaml',
description = 'It makes it more convenient to use PyYAML.',
long_description = open('README.rst').read(),
version = __version__,
author = 'Mosky',
author_email = '[email protected]',
#url = 'http://enhancedyaml.mosky.tw/',
url = 'https://github.com/moskytw/enhancedyaml',
py_modules = ['enhancedyaml'],
license = 'MIT',
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',
]
)