-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 1.06 KB
/
setup.py
File metadata and controls
29 lines (27 loc) · 1.06 KB
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
from setuptools import find_packages, setup
with open('README.rst', 'r') as long_description_file:
long_description = long_description_file.read()
setup(
name='sigmage',
version='0.0.1a1',
author='Juho Kim et al.',
author_email='juho-kim@outlook.com',
description='A Python package for signing images to mark the original creators',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/Zapraxia/sigmage',
packages=find_packages(),
package_data={'sigmage': ('tests/images/dies.png', 'tests/images/jones.jpg')},
classifiers=(
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
),
python_requires='>=3.7',
install_requires='stegano',
)