forked from atbaker/imgur-uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.29 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
import os
from setuptools import setup
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='imgur-uploader',
version='0.1.1',
description='A simple command line client for uploading files to Imgur.',
long_description=read('README.rst'),
url='https://github.com/atbaker/imgur-uploader',
license='MIT',
author='Andrew Tork Baker',
author_email='[email protected]',
py_modules=['imgur_uploader'],
include_package_data=True,
install_requires=[
'click',
'imgurpython'
],
entry_points='''
[console_scripts]
imgur-uploader=imgur_uploader:upload_gif
''',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Utilities',
]
)