forked from SwissDataScienceCenter/calamus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (67 loc) · 2.25 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# -*- coding: utf-8 -*-
# DO NOT EDIT THIS FILE!
# This file has been autogenerated by dephell <3
# https://github.com/dephell/dephell
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os.path
readme = ""
here = os.path.abspath(os.path.dirname(__file__))
readme_path = os.path.join(here, "README.rst")
if os.path.exists(readme_path):
with open(readme_path, "rb") as stream:
readme = stream.read().decode("utf8")
setup(
long_description=readme,
name="calamus",
version="0.4.3",
description="calamus is a library built on top of marshmallow to allow (de-)Serialization of Python classes to JSON-LD.",
python_requires="==3.*,>=3.9.1",
project_urls={
"homepage": "https://github.com/SwissDataScienceCenter/calamus/",
"repository": "https://github.com/SwissDataScienceCenter/calamus/",
},
author="Swiss Data Science Center",
author_email="[email protected]",
license="Apache-2.0",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Development Status :: 4 - Beta",
],
packages=["calamus"],
package_dir={"": "."},
package_data={},
install_requires=[
"lazy-object-proxy==1.*,>=1.4.3",
"marshmallow==3.23.*,>=3.23.0",
"pyld==2.*,>=2.0.2",
"rdflib==6.*,>=6.0.0",
],
extras_require={
"dev": [
"black==21.*,>=21.7.0.b0",
"click<8.1.0,>=8.0.0",
"flake8==3.*,>=3.7.9",
"pre-commit==2.*,>=2.3.0",
"pytest==7.*,>=7.0.0",
"pytest-black==0.*,>=0.3.9",
],
"docs": [
"jinja2<3.1.0,>=3.0.0",
"sphinx==5.*,>=5.0.0",
"sphinx-rtd-theme==0.*,>=0.4.3",
"sphinxcontrib-spelling==5.*,>=5.0.0",
],
},
)