-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 869 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 869 Bytes
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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as fp:
long_description = fp.read()
setup(
name='datauri',
description="implementation of the data uri scheme defined in rfc2397",
long_description=long_description,
version='1.1.0',
author="EclecticIQ",
author_email="info@eclecticiq.com",
packages=['datauri'],
url='https://github.com/eclecticiq/python-data-uri',
license="BSD",
classifiers=[
'Development Status :: 5 - Production/Stable',
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)