Skip to content

Commit 3fec84e

Browse files
author
Thomas Basche
committed
Fix up env vars and setup.py for release
1 parent 65e6ced commit 3fec84e

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed

Pipfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,5 @@ name = "pypi"
77

88
[packages]
99
requests = "*"
10-
arrow = "*"
1110
six = "*"
1211
pendulum = "*"

reposit/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
Global variables for the library
33
"""
44
import os
5-
BASE_URL = os.environ.get('BASE_URL')
5+
BASE_URL = os.environ.get('BASE_URL', 'https://api.repositpower.com')
66
AUTH_PATH = os.environ.get('AUTH_PATH', '{}/v2/auth/login/').format(BASE_URL)

setup.py

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,26 @@
44
long_description = fh.read()
55

66
setuptools.setup(
7-
name="Reposit Client",
8-
version="0.1",
7+
name="reposit",
8+
version="0.2b1",
99
author="Thomas Basche",
1010
author_email="thomas.basche@repositpower.com",
1111
description="A library to communicate with a Reposit Controller",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
14-
url="https://github.com/tombasche/reposit",
14+
url="https://github.com/RepositPower/reposit-python-client",
1515
packages=setuptools.find_packages(),
16+
install_requires=[
17+
'requests',
18+
'pendulum',
19+
'six'
20+
],
1621
classifiers=(
17-
"Programming Language :: Python :: 3",
18-
"License :: OSI Approved :: Apache License 2.0",
22+
"Programming Language :: Python :: 3.6",
23+
"Programming Language :: Python :: 3.5",
24+
"Programming Language :: Python :: 3.4",
25+
"Programming Language :: Python :: 2.7",
26+
"License :: OSI Approved :: Apache Software License",
1927
"Operating System :: OS Independent",
2028
),
2129
)

0 commit comments

Comments
 (0)