-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies and setup installer
- Loading branch information
1 parent
458a3c0
commit 70adc46
Showing
1 changed file
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
from distutils.core import setup | ||
from setuptools import setup | ||
|
||
setup( | ||
name = "staffjoy", | ||
packages = ["staffjoy"], | ||
version = "0.2", | ||
description = "Staffjoy API Wrapper in Python", | ||
author = "Philip Thomas", | ||
author_email = "help@staffjoy.com", | ||
url = "https://github.com/staffjoy/client_python", | ||
download_url = "https://github.com/StaffJoy/client_python/archive/0.2.tar.gz", | ||
keywords = ["staffjoy-api", "staffjoy", "staff joy"], | ||
) | ||
setup(name="staffjoy", | ||
packages=["staffjoy"], | ||
version="0.3", | ||
description="Staffjoy API Wrapper in Python", | ||
author="Philip Thomas", | ||
author_email="help@staffjoy.com", | ||
license="MIT", | ||
url="https://github.com/staffjoy/client_python", | ||
download_url="https://github.com/StaffJoy/client_python/archive/0.3.tar.gz", | ||
keywords=["staffjoy-api", "staffjoy", "staff joy"], | ||
install_requires=["requests[security]"], ) |