forked from iiif-prezi/iiif-prezi3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (44 loc) · 1.75 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
import os
# read the contents of your README file
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
if os.path.exists("version.txt"):
VERSION = (this_directory / "version.txt").read_text().strip()
else:
VERSION = "local_test_version"
REQUIREMENTS = [
"pydantic"
]
# Setting up
setup(
name='iiif-prezi3',
version=VERSION,
author='IIIF Prezi3 Team',
description='IIIF Presentation v3 API implementation',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['iiif_prezi3', 'iiif_prezi3.helpers', 'iiif_prezi3.extensions'],
package_data={
'iiif_prezi3': ['config/extensions.json']
},
classifiers=["Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent", # is this true? know Linux & OS X ok
"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",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Software Development :: Libraries :: Python Modules",
"Environment :: Web Environment"],
python_requires='>=3',
url='https://github.com/iiif-prezi/iiif-prezi3',
license='LICENSE',
install_requires=REQUIREMENTS,
)