-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
46 lines (42 loc) · 1.37 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
from setuptools import setup
from setuptools import find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='c2pa',
version='v2.1.0',
description='Implementation of C2PA: Coalition for Content Provenance and Authenticity.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/numbersprotocol/pyc2pa',
author='Numbers Inc.',
author_email='[email protected]',
license='GPLv3',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
keywords=['wheels'],
packages=find_packages(exclude=['tests']),
install_requires=[
'py-multibase>=1.0.3',
'pycryptodome>=3.9.9',
'pymultihash>=0.8.2',
'py3exiv2>=0.9.3',
'endesive>=2.0.2',
'cbor>=1.0.0',
],
python_requires='>=3',
entry_points={
'console_scripts': [
'cai_tool=c2pa.cai_tool:main',
'c2pa=c2pa.starling:main',
]
},
test_suite='tests'
)