-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 912 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
from raphaelpy import __version__ as version
with open('README.md') as f:
long_description = f.read()
setuptools.setup(
name = 'raphaelpy',
version = version,
description = 'Library for creating SVG drawings using Python, inspired by RaphaëlJS',
author = 'Jan Stransky',
author_email = 'honzik.stransky@gmail.com',
long_description = long_description,
long_description_content_type = 'text/markdown',
url = 'https://github.com/stranskyjan/raphaelpy',
license = "LGPL",
keywords = "Python SVG RaphaelJS Raphael",
packages = ['raphaelpy'],
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
)