-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 952 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
28
29
30
31
from __future__ import print_function
import sys
import os.path
from setuptools import setup, find_packages
readme = os.path.join(os.path.dirname(__file__), 'README.rst')
long_description = open(readme).read()
setup(
name='docdriver',
version='0.0.1',
author='Fabio Pliger',
author_email='[email protected]',
url='',
license='MIT',
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
description='DocDriver, a documention generator from test comments',
long_description=long_description,
keywords='docdriver webdriver comments documentation generator',
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Topic :: Utilities",
],
install_requires=['mako', 'click'],
)