-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 939 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
from setuptools import setup
version = '0.0.6'
setup(name='simlin',
version=version,
description='Simple Image Manipulator for Linux',
long_description=open("./README.md", "r").read(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"License :: OSI Approved :: MIT License",
],
author='Al Audet',
author_email='[email protected]',
url='https://www.linuxnorth.org/simlin/',
download_url='https://github.com/alaudet/simlin/releases',
license='MIT License',
packages=['simlin'],
scripts=['bin/simlin'],
install_requires=['pillow']
)