mirror of
https://github.com/satwikkansal/wtfpython
synced 2024-11-09 21:18:52 +01:00
42 lines
1.5 KiB
Python
42 lines
1.5 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
if __name__ == "__main__":
|
|
setup(name='wtfpython',
|
|
version='0.2',
|
|
description='What the f*ck Python!',
|
|
author="Satwik Kansal",
|
|
maintainer="Satwik Kansal",
|
|
maintainer_email='satwikkansal@gmail.com',
|
|
url='https://github.com/satwikkansal/wtfpython',
|
|
platforms='any',
|
|
license="WTFPL 2.0",
|
|
long_description="An interesting collection of subtle & tricky Python Snippets"
|
|
" and features.",
|
|
keywords="wtfpython gotchas snippets tricky",
|
|
packages=find_packages(),
|
|
entry_points = {
|
|
'console_scripts': ['wtfpython = wtf_python.main:load_and_read']
|
|
},
|
|
classifiers=[
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'Environment :: Console',
|
|
'Environment :: MacOS X',
|
|
'Environment :: Win32 (MS Windows)',
|
|
|
|
'Intended Audience :: Science/Research',
|
|
'Intended Audience :: Developers',
|
|
'Intended Audience :: Education',
|
|
'Intended Audience :: End Users/Desktop',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Topic :: Documentation',
|
|
'Topic :: Education',
|
|
'Topic :: Scientific/Engineering',
|
|
'Topic :: Software Development'],
|
|
)
|