-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·29 lines (26 loc) · 922 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
#!/usr/bin/env python3
import os
from setuptools import setup
def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename), encoding="utf-8") as f:
return f.read()
setup(
name='overview_upload',
version='0.9.11',
description='Upload documents to Overview web server',
long_description=read_file('README.rst'),
url='https://github.com/overview/overview-upload-directory',
install_requires=[
'requests>=2.17.3',
'rfc6266>=0.0.4',
],
packages=[ 'overview_upload' ],
scripts=[ 'overview-create-document-set', 'overview-upload', 'overview-upload-csv' ],
classifiers=(
'License :: OSI Approved :: GNU Affero General Public License v3',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
)
)