-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·46 lines (40 loc) · 1 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
#!/usr/bin/env python3
from setuptools import setup
fuse_reqs = [
'fuse-python >= 0.3.1; python_version < "3"',
'fuse-python >= 1.0.0; python_version > "3"',
]
readme = open('README.md', 'r').read()
readme = readme.replace(
'(FUSE.md)',
'(https://github.com/drougge/wellpapp-pyclient/blob/master/FUSE.md)'
)
setup(
name='wellpapp',
version='CHANGEME.dev', # set this for each release
packages=[
'wellpapp',
'wellpapp.shell',
],
entry_points={
'console_scripts': [
'wp = wellpapp.__main__:main',
],
},
install_requires=[
'Pillow >= 3.1.2',
'PyGObject >= 3.20',
],
extras_require={
'fuse': fuse_reqs,
'all': fuse_reqs,
},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
author='Carl Drougge',
author_email='bearded@longhaired.org',
url='https://github.com/drougge/wellpapp-pyclient',
license='MIT',
description='Client library and application for the wellpapp image tagging system.',
long_description=readme,
long_description_content_type='text/markdown',
)