-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (38 loc) · 1.25 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
with open('README.md', 'r') as fh:
long_description = fh.read()
patch_version = os.environ.get('PATCH_VERSION', '0')
setup(
name='picamraw',
version='1.2.{patch_version}'.format(**locals()),
author='Osmo Systems',
author_email='dev@osmobot.com',
description='Library for extracting raw bayer data from a Raspberry Pi JPEG+RAW file',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://www.github.com/osmosystems/picamraw',
packages=find_packages(),
python_requires='~=3.5',
install_requires=[
'numpy',
],
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera',
'Topic :: Multimedia :: Graphics :: Graphics Conversion',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords=[
'Raspberrypi',
'camera',
'RAW',
'bayer'
]
)