forked from manatlan/jbrout3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.34 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
#!/usr/bin/python3
import os
import sys
from setuptools import setup
import jbrout
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as inf:
return inf.read()
setup(
name='jbrout3',
version=jbrout.__version__,
description='Photo collection manager of new generation',
author=u'manatlan',
author_email='[email protected]',
url='https://github.com/manatlan/jbrout3',
long_description=read("README.md"),
entry_points={
'console_scripts': [
'jbrout=jbrout:main',
],
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Development Status :: 1 - Planning",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License " +
"Version 2 only (GPL-V2)",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Graphics :: Viewers",
"Topic :: Multimedia :: Graphics :: Capture :: Digital Camera",
],
install_requires=['py3exiv2', 'lxml', 'wuy', 'vbuild',"Pillow"],
)