File tree Expand file tree Collapse file tree 3 files changed +14
-7
lines changed
Expand file tree Collapse file tree 3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,5 @@ name = "pypi"
77
88[packages ]
99requests = " *"
10- arrow = " *"
1110six = " *"
1211pendulum = " *"
Original file line number Diff line number Diff line change 22Global variables for the library
33"""
44import os
5- BASE_URL = os .environ .get ('BASE_URL' )
5+ BASE_URL = os .environ .get ('BASE_URL' , 'https://api.repositpower.com' )
66AUTH_PATH = os .environ .get ('AUTH_PATH' , '{}/v2/auth/login/' ).format (BASE_URL )
Original file line number Diff line number Diff line change 44 long_description = fh .read ()
55
66setuptools .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)
You can’t perform that action at this time.
0 commit comments