Prepare setup.py for first release

This commit is contained in:
Quantum 2020-09-26 20:30:13 -04:00
parent 7bd6aebf73
commit 67d16e8016

View file

@ -1,9 +1,14 @@
from setuptools import setup import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as f:
long_description = f.read()
setup( setup(
name='win2xcur', name='win2xcur',
version='0.3.1', version='0.0.1',
packages=['win2xcur'], packages=find_packages(),
install_requires=['Wand'], install_requires=['Wand'],
entry_points={ entry_points={
@ -14,4 +19,25 @@ setup(
author='quantum', author='quantum',
author_email='quantum2048@gmail.com', author_email='quantum2048@gmail.com',
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',
],
) )