forked from VaasuDevanS/cowsay-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 904 Bytes
/
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
from setuptools import setup, find_packages
CLASSIFIERS = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
setup(name='cowsay',
version='5.0',
url='https://github.com/VaasuDevanS/cowsay-python',
license='GNU-GPL',
author='Vaasudevan Srinivasan',
author_email='[email protected]',
entry_points={"console_scripts": ["cowsay = cowsay.main:cli"]},
description='The famous cowsay for GNU/Linux is now available for python',
packages=find_packages(),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
zip_safe=False,
classifiers=CLASSIFIERS,
)