-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 1.13 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
import setuptools
with open("README.MD") as f:
long_description = f.read()
setuptools.setup(
name="py-is_ipfs",
version="0.6.0",
description="Python library to identify valid IPFS resources",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Barabazs/py-is_ipfs",
author="Barabazs",
packages=setuptools.find_packages(exclude=["tests", "tests.*"]),
package_data={
"cid-stubs": ["__init__.pyi", "cid.pyi"],
"multibase-stubs": ["__init__.pyi", "converters.pyi", "multibase.pyi"],
"is_ipfs": ["py.typed"],
},
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
install_requires=[
"py-cid>=0.3.0,<1.0.0",
"py-multibase>=1.0.3,<2.0.0",
],
)