-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (33 loc) · 959 Bytes
/
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
from setuptools import setup
from timg import meta
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name=meta.NAME,
version=meta.VERSION,
description=meta.DESC,
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/adzierzanowski/timg',
author='Aleksander Dzierżanowski',
author_email='a.dzierzanowski1@gmail.com',
license='MIT',
packages=['timg', 'timg/methods'],
include_package_data=True,
install_requires=['pillow'],
entry_points={
'console_scripts': [
'timg = timg.__main__:main'
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Multimedia :: Graphics :: Viewers',
],
zip_safe=False
)