win2xcur/setup.py

45 lines
1.5 KiB
Python
Raw Permalink Normal View History

2020-09-26 20:30:13 -04:00
import os
2020-09-27 00:59:19 -04:00
from setuptools import find_packages, setup
2020-09-26 20:30:13 -04:00
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
long_description = f.read()
2020-09-26 18:14:55 -04:00
setup(
name='win2xcur',
2022-03-28 00:50:04 -04:00
version='0.1.1',
2020-09-26 20:30:13 -04:00
packages=find_packages(),
install_requires=['numpy', 'Wand'],
2020-09-26 18:14:55 -04:00
entry_points={
'console_scripts': [
'win2xcur = win2xcur.main.win2xcur:main',
'x2wincur = win2xcur.main.x2wincur:main',
2020-09-26 18:14:55 -04:00
],
},
author='quantum',
author_email='quantum2048@gmail.com',
2020-09-26 20:30:13 -04:00
url='https://github.com/quantum5/win2xcur',
description='win2xcur is a tool to convert Windows .cur and .ani cursors to Xcursor format.',
long_description=long_description,
long_description_content_type='text/markdown',
keywords='cur ani x11 windows win32 cursor xcursor',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Desktop Environment',
],
2020-09-26 18:14:55 -04:00
)