-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
46 lines (41 loc) · 1.31 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
import subprocess
from setuptools import setup
from setuptools import find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='cai',
version='v1.1.4',
description='Content Authenticity Initiative Implementation.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/numbersprotocol.io/starling-cai',
author='Numbers Inc.',
author_email='dev@numbersprotocol.io',
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',
'pymultihash>=0.8.2',
'py3exiv2>=0.9.3',
#'tox',
],
python_requires='>=3',
entry_points={
'console_scripts': [
'cai_tool=cai.cai_tool:main',
'starling_cai=cai.starling:main',
]
},
test_suite='tests'
)