-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
45 lines (42 loc) · 1.48 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
38
39
40
41
42
43
44
45
#!/usr/bin/env python
# coding=utf-8
from setuptools import setup, find_packages
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='img2sh',
version=__import__('img2sh').__version__,
install_requires=requirements,
description=(
'Show images directly on terminal using Xterm colors.'
),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author="Mehmet Ozan Unal",
author_email='[email protected]',
maintainer="Mehmet Ozan Unal",
maintainer_email='[email protected]',
license="MIT",
packages=find_packages(),
platforms=["all"],
url='https://github.com/mozanunal/img2sh',
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries'
],
entry_points={
'console_scripts': ['img2sh=img2sh.cli:main'],
},
)