-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
38 lines (34 loc) · 1.22 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
# -*- coding: utf-8 -*-
from setuptools import setup
from os.path import join, dirname
import wsd
setup(name='WritingSmellDetector',
version=wsd.__version__,
description='Writing Smell Detector is a tool '
'to help find problems in your writing',
long_description=open(join(dirname(__file__), 'README.md')).read(),
author=wsd.__author__,
author_email=wsd.__email__,
url='http://github.com/utapyngo/WritingSmellDetector',
packages=[''],
package_data={'': ['*.md', 'html/*.html', 'html/*.css',
'rules/*.json', 'rules/latex/*.json']},
package_dir = {'': '.'},
entry_points={
'console_scripts':
['wsd = wsd:main',
]},
classifiers=(
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'License :: OSI Approved :: GNU General Public License v3 or '
'later (GPLv3+)',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
),
install_requires=['Jinja2>=2.6'],
)