forked from htgoebel/pysource-spellchecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (33 loc) · 1.23 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
"""
`pysource-spellchecker` extracts all strings (including unicode
strings) and comments and passes them to the `enchant` spellchecker.
"""
from setuptools import setup, find_packages
setup(
name = "pysource-spellchecker",
version = "0.1.1",
scripts = ['pysource-spellchecker'],
install_requires = ['pyenchant'],
packages=find_packages(exclude=['ez_setup']),
# metadata for upload to PyPI
author = "Hartmut Goebel",
author_email = "h.goebel@crazy-compiler.com",
description = "Spellcheck strings and comments in Python source files using Enchant",
long_description = __doc__,
license = "GPL 3.0",
#keywords = "",
url = "https://github.com/htgoebel/pysource-spellchecker",
download_url = "http://pypi.python.org/pypi/pysource-spellchecker",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Quality Assurance',
],
# these are for easy_install (used by bdist_*)
zip_safe = True,
)