-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (26 loc) · 784 Bytes
/
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
from setuptools import setup
setup(
name='d',
version='0.2.2',
author='Steve Losh',
author_email='steve@stevelosh.com',
packages=['d'],
scripts=['bin/d'],
url='https://docs.stevelosh.com/d/',
license='MIT',
description="Documentation generation that won't make you tear your hair out.",
long_description='Read the documentation at https://docs.stevelosh.com/d/',
install_requires=[
'Markdown',
'pyquery',
'pygments'
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
package_data={'d': ['resources/*']},
)