-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (30 loc) · 1.11 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
from setuptools import setup
if __name__ == '__main__':
setup(
name="hdrpy",
version="0.3.3",
description="HDR histogram implementation based on numpy",
author="Dmitri Pribysh",
author_email="[email protected]",
url="https://github.com/dmand/hdrpy",
license='Apache 2.0',
platform='any',
packages=["hdrpy"],
install_requires=[
'numpy>=1.14.0'
],
keywords=['hdrpy', 'hdr', 'histogram', 'high dynamic range'],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
],
)