-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
58 lines (53 loc) · 1.4 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
"""
Docta is a new healing docs kit. Technically speaking, it's a static-site
generator slightly focused on building documetation.
Project homepage:
http://docta.05bit.com
"""
from setuptools import setup, find_packages
__version__ = '0.2.5'
install_requires=[
'future',
# 'misaka',
'mistune',
'watchdog',
'jinja2',
'PyYAML',
'pygments',
# 'docutils',
],
try:
import argparse
except ImportError:
install_requires.append('argparse')
setup(
name="Docta",
version=str(__version__),
author="Alexey Kinyov",
author_email='[email protected]',
url='https://github.com/05bit/docta',
description="Docta is a new healing docs kit.",
long_description=__doc__,
license='BSD',
zip_safe=False,
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
entry_points = {
'console_scripts': 'docta = docta.cli:main'
},
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Internet',
'Topic :: Text Processing',
'Topic :: Utilities'
],
# use_2to3=True
)