-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 871 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
32
33
34
35
# -*- coding: utf-8 -*
"""
Setup script for BDDOCS.
USAGE:
python setup.py install
"""
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='bddocs',
version='0.43',
description='Create end-user readable docs in Pythonic way',
packages=[
'bddocs/model',
'bddocs/src/graphs',
'bddocs/src/html',
'bddocs/src/markup',
'bddocs/src/pdf',
'bddocs/config',
],
long_description=readme(),
author='Yuri Reis & Alexandre Reis',
install_requires=[
'wheel',
'fpdf>=1.7.2',
'plotly>=2.0.7'],
url='http://github.com/yurireeis/bddocs',
dependency_links=['http://github.com/yurireeis/bddocs/tarball/master#egg=master'],
platforms='All',
zip_safe=True,
)