forked from jinnovation/dogesay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (30 loc) · 1009 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
26
27
28
29
30
31
32
33
34
from setuptools import setup
setup(
name = "dogesay",
packages = ["dogesay"],
version = "1.0.0",
description = "Like cowsay but doge",
url = "https://github.com/jinnovation/dogesay",
download_url = "https://github.com/jinnovation/dogesay/tarball/1.0",
author = "Jonathan Jin",
author_email = "[email protected]",
license = "MIT",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Topic :: Games/Entertainment",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords = "",
entry_points ={
"console_scripts": [
"dogesay =dogesay.script:main",
],
},
package_data = {
"dogesay": ["static/*.txt"],
},
)