mirror of
https://github.com/satwikkansal/wtfpython.git
synced 2025-07-21 21:41:17 +02:00
* Fix .gitignore issue
* Add pypi package 🚀
This commit is contained in:
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'],
|
||||
)
|
Reference in New Issue
Block a user