-
Notifications
You must be signed in to change notification settings - Fork 175
/
Copy pathsetup.py
27 lines (26 loc) · 885 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
from distutils.core import setup
setup(
name = "MakeSentences",
packages = ["ex49"],
version = "1.0",
description = "Making Sentences",
author = "Joseph Pan",
author_email = "cs.wzpan@gmail.com",
url = "http://hahack.com/",
download_url = "",
keywords = ["lexicon"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Linguistic",
],
long_description = """
Put a long description here.
"""
)