--- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +from setuptools import setup + +with open('README.md') as fh: + long_description = fh.read() + +setup( + name='imbpy', + author='ring', + author_email='ring@8chan.co', + description='A python interface for imageboards', + long_description=long_description, + long_description_content_type='text/markdown', + license='ISC', + classifiers=[ + 'Programming Language :: Python :: 3', + 'Development Status :: 3 - Alpha', + 'Environment :: Console', + 'License :: OSI Approved :: ISC License (ISCL)', + 'Intended Audience :: End Users/Desktop'], + packages=['imbpy'], + scripts=['imb.py'], + install_requires=['requests', 'pillow'], + python_requires='>=3.7' +)