mirror of
https://github.com/satwikkansal/wtfpython
synced 2025-07-04 12:28:05 +02:00
* Fix .gitignore issue
* Add pypi package 🚀
This commit is contained in:
parent
a612e975ee
commit
d325554921
20 changed files with 2274 additions and 0 deletions
41
wtfpython-pypi/setup.py
Normal file
41
wtfpython-pypi/setup.py
Normal file
|
@ -0,0 +1,41 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
if __name__ == "__main__":
|
||||
setup(name='wtfpython',
|
||||
version='0.1.3',
|
||||
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'],
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue