setup.py (1480B)
1 """ 2 iniconfig: brain-dead simple config-ini parsing. 3 4 compatible CPython 2.3 through to CPython 3.2, Jython, PyPy 5 6 (c) 2010 Ronny Pfannschmidt, Holger Krekel 7 """ 8 9 from setuptools import setup 10 11 12 def main(): 13 with open('README.txt') as fp: 14 readme = fp.read() 15 setup( 16 name='iniconfig', 17 packages=['iniconfig'], 18 package_dir={'': 'src'}, 19 description='iniconfig: brain-dead simple config-ini parsing', 20 long_description=readme, 21 use_scm_version=True, 22 url='http://github.com/RonnyPfannschmidt/iniconfig', 23 license='MIT License', 24 platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], 25 author='Ronny Pfannschmidt, Holger Krekel', 26 author_email=( 27 'opensource@ronnypfannschmidt.de, holger.krekel@gmail.com'), 28 classifiers=[ 29 'Development Status :: 4 - Beta', 30 'Intended Audience :: Developers', 31 'License :: OSI Approved :: MIT License', 32 'Operating System :: POSIX', 33 'Operating System :: Microsoft :: Windows', 34 'Operating System :: MacOS :: MacOS X', 35 'Topic :: Software Development :: Libraries', 36 'Topic :: Utilities', 37 'Programming Language :: Python', 38 'Programming Language :: Python :: 2', 39 'Programming Language :: Python :: 3', 40 ], 41 include_package_data=True, 42 zip_safe=False, 43 ) 44 45 if __name__ == '__main__': 46 main()