-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
31 lines (29 loc) · 787 Bytes
/
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
from setuptools import setup
with open('README.rst') as desc:
long_description = desc.read()
setup(
name="ptpimg_uploader",
version="0.9",
author="theirix",
author_email="[email protected]",
description=(
"PTPImg uploader, handles local files and URLs, from the commandline"),
long_description=long_description,
license="BSD",
keywords="image uploader",
url="https://github.com/theirix/ptpimg-uploader",
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
],
py_modules=['ptpimg_uploader'],
entry_points={
'console_scripts': [
'ptpimg_uploader = ptpimg_uploader:main',
],
},
install_requires=[
'requests',
],
python_requires=">=3.3"
)