-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
45 lines (39 loc) · 1.23 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
33
34
35
36
37
38
39
40
41
42
43
44
45
import os
from setuptools import find_packages, setup
VERSION = "2.2.0"
def read(fname):
try:
with open(os.path.join(os.path.dirname(__file__), fname)) as fh:
return fh.read()
except IOError:
return ""
setup(
name="python-datauri",
version=VERSION,
url="https://github.com/fcurella/python-datauri/",
maintainer="Flavio Curella",
maintainer_email="flavio.curella@gmail.com",
description="A li'l class for data URI manipulation in Python",
long_description=read("README.rst"),
license="Unlicense",
packages=find_packages(exclude=["tests", "*.tests"]),
package_data={
"faker": ["py.typed"],
},
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
test_suite="tests",
install_requires=[
"typing_extensions",
],
)