-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (27 loc) · 973 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
from setuptools import setup, find_packages
setup(
name = "Twitter Spell Checking",
version = "0.1",
packages = find_packages(),
include_package_data = True,
author = "Thomas Grange",
author_email = "[email protected]",
description = "Spell checking with a database of words from twitter accounts",
license = "Apache",
keywords = "twitter license licenser open-source",
url = "http://github.com/sem-io/python-twitter-spell-checking",
install_requires = ['python-twitter'],
# Setting up executable/main functions links
entry_points = {
'console_scripts': [
'twitter_spelling = twitter_spelling.cli:main',
]
},
classifiers = [
'Development Status :: 0.1 - Early Alpha',
'Environment :: Unix-like Systems',
'Intended Audience :: Developers, Project managers, Sys admins',
'Programming Language :: Python',
'Operating System :: Unix-like',
],
)