-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.05 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import setuptools
from setuptools import find_packages
def readme():
with open('README.md') as f:
return f.read()
setuptools.setup(
name='imgurfy',
version='0.0.2',
packages=find_packages(),
url='https://github.com/samapriya/imgurfy',
install_requires=['logzero >= 1.5.0', 'requests == 2.27.1'],
license='Apache 2.0',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
'Topic :: Multimedia :: Graphics',
],
author='Samapriya Roy',
author_email='samapriya.roy@gmail.com',
description='Simple CLI for Imgur API',
entry_points={
'console_scripts': [
'imgurfy=imgurfy.imgurfy:main',
],
},
)