-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (31 loc) · 1.2 KB
/
setup.py
File metadata and controls
32 lines (31 loc) · 1.2 KB
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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
myversion = '0.9'
setup(
name = 'pythonWordArt',
packages = ['pythonWordArt'],
version = myversion,
license='gpl-3.0',
description = 'Make WordArt, like the ones in MS Office, using Python3',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'Luca Tringali',
author_email = 'TRINGALINVENT@libero.it',
url = 'https://github.com/zorbaproject/pythonWordArt',
download_url = 'https://github.com/zorbaproject/pythonWordArt/archive/v'+myversion+'.tar.gz',
keywords = ['wordart', 'html2png', 'office'],
include_package_data=True,
install_requires=[
'PySide2',
],
classifiers=[
'Development Status :: 4 - Beta', # either "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)