Skip to content

Commit 575873c

Browse files
Henry Chanhenrylamchan
authored andcommitted
Bootstrap SDK for PyPi
1 parent 939a519 commit 575873c

File tree

5 files changed

+38
-1
lines changed

5 files changed

+38
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
# workos-python
1+
# workos-python
2+
API Client for WorkOS

build_requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
twine==3.1.1

scripts/build_and_upload_dist.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/bin/bash
2+
# Build the distribution
3+
python3 setup.py sdist bdist_wheel
4+
5+
# Upload the distribution to PyPi via twine
6+
twine upload dist/*

setup.py

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='workos',
5+
version='0.0.0a1',
6+
author='WorkOS',
7+
author_email='[email protected]',
8+
url='https://github.com/workos-inc/workos-python',
9+
description='WorkOS Python Client',
10+
packages=find_packages(),
11+
zip_safe=False,
12+
license='MIT',
13+
install_requires=[],
14+
classifiers=[
15+
'Development Status :: 1 - Planning',
16+
'Intended Audience :: Developers',
17+
'License :: OSI Approved :: MIT License',
18+
'Operating System :: OS Independent',
19+
'Programming Language :: Python',
20+
'Programming Language :: Python :: 2',
21+
'Programming Language :: Python :: 2.7',
22+
'Programming Language :: Python :: 3',
23+
'Programming Language :: Python :: 3.4',
24+
'Programming Language :: Python :: 3.5',
25+
'Programming Language :: Python :: 3.6',
26+
'Programming Language :: Python :: 3.7',
27+
'Programming Language :: Python :: 3.8',
28+
],
29+
)

workos/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)