forked from cduck/drawsvg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 1.03 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
from setuptools import setup, find_packages
version = '1.0.2'
try:
with open('DESCRIPTION.rst', 'r') as f:
longDesc = f.read()
except:
print('Warning: Could not open DESCRIPTION.rst. long_description will be set to None.')
longDesc = None
setup(
name = 'drawSvg',
packages = find_packages(),
version = version,
description = 'This is a Python 3 library for programmatically generating SVG images (vector drawings) and rendering them or displaying them in an iPython notebook.',
long_description = longDesc,
author = 'Casey Duckering',
#author_email = '',
url = 'https://github.com/cduck/drawSvg',
download_url = 'https://github.com/cduck/drawSvg/archive/{}.tar.gz'.format(version),
keywords = ['SVG', 'draw', 'graphics', 'iPython', 'Jupyter'],
classifiers = [
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Framework :: IPython',
'Framework :: Jupyter',
],
install_requires = [
'cairoSVG',
],
)