-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (28 loc) · 1.08 KB
/
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
from setuptools import setup
import os.path
import sys
should_2to3 = sys.version >= '3'
setup(name='plac_ini',
version='0.9.5',
description=('Adds configuration file support to plac'),
long_description=open('README.txt').read(),
author='Brent Woodruff',
author_email='[email protected]',
url='https://github.com/fprimex/plac_ini',
license="BSD License",
py_modules = ['plac_ini'],
scripts = [],
install_requires=['plac'],
use_2to3=should_2to3,
keywords="command line arguments ini file parser",
platforms=["All"],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities'],
zip_safe=False)