-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (62 loc) · 2.13 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
from setuptools import setup, find_packages
from dexy.version import DEXY_VERSION
import platform
is_windows = platform.system() == 'Windows'
if is_windows:
os_specific_requires = []
else:
os_specific_requires = ['pexpect']
setup(
author='Ana Nelson',
author_email='ana@ananelson.com',
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Topic :: Documentation",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Code Generators",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: LaTeX"
],
description='Document Automation',
### "entry-points"
entry_points = {
'console_scripts' : [
'dexy = dexy.commands:run'
],
'pygments.lexers' : [
'rst+django = dexy.filters.utils:RstDjangoLexer'
]
},
### @end
include_package_data = True,
install_requires = os_specific_requires + [
# for internal dexy use or used in many common plugins
'BeautifulSoup4',
'PyYAML',
'cashew>=0.2.7',
'chardet',
'inflection>=0.2.0',
'jinja2',
'ply>=3.4',
'pygments',
'python-modargs>=1.7',
'requests>=0.10.6',
# dexy utilities
'dexy_viewer', ## TODO version
# for convenience of running additional filters
'Markdown',
'docutils'
],
name='dexy',
packages=find_packages(),
url='http://dexy.it',
version=DEXY_VERSION
)