forked from ripple/dactyl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·63 lines (58 loc) · 1.67 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
#!/usr/bin/env python3
"""setuptools based setup module"""
from setuptools import setup
long_description = open('README.md', encoding="utf-8").read()
with open("dactyl/version.py", encoding="utf-8") as versionfile:
exec(versionfile.read())
setup(
name='dactyl',
version=__version__,
description='Tools to generate documentation.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/ripple/dactyl',
author='Ripple',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Utilities',
'Topic :: Documentation',
],
keywords='documentation',
packages=[
'dactyl',
],
entry_points={
'console_scripts': [
'dactyl_build = dactyl.dactyl_build:dispatch_main',
'dactyl_link_checker = dactyl.dactyl_link_checker:dispatch_main',
'dactyl_style_checker = dactyl.dactyl_style_checker:dispatch_main',
],
},
install_requires=[
'argparse',
'beautifulsoup4',
'jinja2>=2.11',
'Markdown>=3.0.1',
'ruamel.yaml',
'requests',
'watchdog',
'textstat',
'pyspellchecker',
'pygments'
],
package_data={
'': [
"templates/*",
"default-config.yml",
"words.txt"
],
}
)