Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remore unnecessary future install requirement #81

Merged
merged 2 commits into from
Jun 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@

# -- Project information -----------------------------------------------------

project = u'tuspy'
copyright = u'2018, Ifedapo Olarewaju'
author = u'Ifedapo Olarewaju'
project = 'tuspy'
copyright = '2018, Ifedapo Olarewaju'
author = 'Ifedapo Olarewaju'

# The short X.Y version
version = u''
version = ''
# The full version, including alpha/beta/rc tags
release = u''
release = ''


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -127,8 +127,8 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'tuspy.tex', u'tuspy Documentation',
u'Ifedapo Olarewaju', 'manual'),
(master_doc, 'tuspy.tex', 'tuspy Documentation',
'Ifedapo Olarewaju', 'manual'),
]


Expand All @@ -137,7 +137,7 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'tuspy', u'tuspy Documentation',
(master_doc, 'tuspy', 'tuspy Documentation',
[author], 1)
]

Expand All @@ -148,7 +148,7 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'tuspy', u'tuspy Documentation',
(master_doc, 'tuspy', 'tuspy Documentation',
author, 'tuspy', 'One line description of project.',
'Miscellaneous'),
]
10 changes: 4 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import sys
import os
from setuptools import setup

import tusclient
Expand All @@ -11,7 +9,6 @@
license='MIT',
author='Ifedapo Olarewaju',
install_requires=[
'future>=0.16.0',
'requests>=2.18.4',
'six>=1.11.0',
'tinydb>=3.5.0',
Expand All @@ -32,8 +29,7 @@
]
},
author_email='ifedapoolarewaju@gmail.com',
description=
'A Python client for the tus resumable upload protocol -> http://tus.io',
description='A Python client for the tus resumable upload protocol -> http://tus.io',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
packages=['tusclient', 'tusclient.fingerprint', 'tusclient.storage', 'tusclient.uploader'],
Expand All @@ -50,4 +46,6 @@
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: File Transfer Protocol (FTP)',
'Topic :: Communications :: File Sharing',
])
],
python_requires=">=3.5.3",
)
1 change: 0 additions & 1 deletion tests/test_fingerprint.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from __future__ import print_function
import unittest

import six
Expand Down