-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
32 lines (31 loc) · 1.03 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
import sys
from setuptools import setup, find_packages
setup(
name="pix-to-xls",
version="1.0.1",
author="Joel Ibaceta",
author_email="[email protected]",
license='MIT',
description="A simple tool to make ascii art from an image using excel colored cells",
long_description="A simple tool to make ascii art from an image using excel colored cells",
url="https://github.com/joelibaceta/pix-to-xls",
project_urls={
'Source': 'https://github.com/joelibaceta/pix-to-xls',
'Tracker': 'https://github.com/joelibaceta/pix-to-xls/issues'
},
packages=find_packages(),
include_package_data=True,
install_requires=['xlrd', 'getkey'],
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords='xls pixel-art images',
entry_points={
"console_scripts": [
'pix-to-xls=pix_to_xls.cli:main'
]
}
)