Skip to content

Commit 0c009d9

Browse files
committed
Packaging updates and fixes.
1 parent 8e57f39 commit 0c009d9

File tree

6 files changed

+16
-26
lines changed

6 files changed

+16
-26
lines changed

MANIFEST.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
include LICENSE
2+
include requirements.txt

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ Github and install it manually:
1616
cd python-unsplash
1717
python setup.py install
1818

19-
Python 2.7 is supported for now.
19+
Python 2.6 and 2.7, is supported for now.

requirements.txt

-15
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,4 @@
1-
appdirs==1.4.0
2-
backports.shutil-get-terminal-size==1.0.0
3-
decorator==4.0.11
4-
enum34==1.1.6
5-
ipython==4.2.1
6-
ipython-genutils==0.1.0
71
oauthlib==2.0.1
8-
packaging==16.8
9-
pathlib2==2.2.1
10-
pexpect==4.2.1
11-
pickleshare==0.7.4
12-
ptyprocess==0.5.1
13-
pyparsing==2.1.10
142
requests==2.13.0
153
requests-oauthlib==0.7.0
16-
scandir==1.4
17-
simplegeneric==0.8.1
184
six==1.10.0
19-
traitlets==4.3.1

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal=1

setup.py

+10-9
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,23 @@
1010

1111
setup(
1212
name="python-unsplash",
13-
version="1.0.0",
13+
version="1.0.0a1",
1414
description="A Python client for the Unsplash API.",
1515
license="MIT",
1616
author="Yakup Adaklı",
1717
author_email="[email protected]",
1818
url="http://github.com/yakupadakli/python-unsplash.git",
19-
packages=find_packages(exclude=['tests']),
19+
packages=find_packages(exclude=["tests"]),
2020
install_requires=requirements,
2121
keywords="unsplash library",
2222
classifiers=[
23-
'Development Status :: 1 - Beta',
24-
'Topic :: Software Development :: Libraries',
25-
'License :: OSI Approved :: MIT License',
26-
'Operating System :: OS Independent',
27-
'Programming Language :: Python',
28-
'Programming Language :: Python :: 2.7',
23+
"Development Status :: 3 - Alpha",
24+
"Topic :: Software Development :: Libraries",
25+
"License :: OSI Approved :: MIT License",
26+
"Operating System :: OS Independent",
27+
"Programming Language :: Python :: 2",
28+
"Programming Language :: Python :: 2.6",
29+
"Programming Language :: Python :: 2.7",
2930
],
30-
zip_safe=True
31+
zip_safe=True,
3132
)

unsplash/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
"""A library that provides a Python interface to the Unsplash API"""
88

9-
__version__ = "1.0.0"
9+
__version__ = "1.0.0a1"
1010
__author__ = "Yakup Adaklı"
1111
__license__ = "MIT"
1212

0 commit comments

Comments
 (0)