-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
executable file
·38 lines (32 loc) · 1.02 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
#!/usr/bin/env python
from setuptools import setup # type: ignore
__version__ = "1.1.5"
def get_long_description():
"""
Return the README.
"""
with open("README.md", encoding="utf8") as f:
return f.read()
setup(
name="cowpy",
description="A cowsay clone for python in one file.",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="Jeff Buttars",
author_email="[email protected]",
url="https://github.com/jeffbuttars/cowpy",
python_requires=">=3.0",
version=__version__,
packages=["cowpy"],
license="Apache License 2.0",
license_files=("LICENSE.md",),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
scripts=["scripts/cowpy", "scripts/cowpy.bat"],
)