forked from pixelb/crudini
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (25 loc) · 813 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="crudini",
version="0.9",
author="Pádraig Brady",
author_email="P@draigBrady.com",
description=("A utility for manipulating ini files"),
license="GPLv2",
keywords="ini config edit",
url="http://github.com/pixelb/crudini",
long_description=read('README'),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"Topic :: System :: Systems Administration",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 2",
],
install_requires=['iniparse>=0.3.2'],
scripts=["crudini"]
)