-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (65 loc) · 2.68 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import codecs
from setuptools import setup, find_packages
setup(
name='pybanner',
version='1.0.3',
description="A small and lightweight library for Python 3.x and PyPy3 to print texts as banners. Works on Linux, MacOS and Windows. No Figlet, Toilet or PyFiglet needed, it's Pure Python!",
url='https://github.com/rabuchaim/pybanner',
author='Ricardo Abuchaim',
author_email='[email protected]',
maintainer='Ricardo Abuchaim',
maintainer_email='[email protected]',
project_urls={
"Issue Tracker": "https://github.com/rabuchaim/pybanner/issues",
"Source code": "https://github.com/rabuchaim/pybanner",
},
bugtrack_url='https://github.com/rabuchaim/pybanner/issues',
license='MIT',
keywords=['pybanner','banner','figlet','pyfiglet','toilet','pure python','purepython','ascii','asciiart'],
packages=['pybanner'],
py_modules=['pybanner', 'pybanner'],
package_dir = {'pybanner': 'pybanner'},
include_package_data=True,
zip_safe = False,
package_data={
'pybanner': [
'README.md',
'LICENSE',
'CHANGELOG.md',
'pybanner/pybanner.py'
],
},
python_requires=">=3.0",
install_requires=[],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Internet',
'Topic :: System :: Systems Administration',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Microsoft :: Windows :: Windows 11',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: BSD',
'Operating System :: POSIX :: BSD :: FreeBSD',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'License :: OSI Approved :: MIT License',
],
long_description=codecs.open("README.md","r","utf-8").read(),
long_description_content_type='text/markdown',
)