-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
55 lines (48 loc) · 1.53 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Release process setup see:
# https://github.com/pypa/twine
#
# Upgrade twine
# python3 -m pip install --user --upgrade twine
#
# Run this to build the `dist/PACKAGE_NAME-xxx.tar.gz` file
# rm -rf ./dist && python3 setup.py sdist
#
# Check dist/*
# python3 -m twine check dist/*
#
# Run this to build & upload it to `pypi`, type your account name when prompted.
# python3 -m twine upload dist/*
#
# In one command line:
# rm -rf ./dist && python3 setup.py sdist bdist_wheel && python3 -m twine check dist/*
# rm -rf ./dist && python3 setup.py sdist bdist_wheel && python3 -m twine upload dist/*
#
from setuptools import setup
# Usage: python setup.py sdist bdist_wheel
links = [] # for repo urls (dependency_links)
with open("requirements.txt") as fp:
install_requires = fp.read()
DESCRIPTION = "A python client for Passbolt."
VERSION = "0.3.7"
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
setup(
name="passbolt-python-api",
version=VERSION,
author="Shubham Dipt",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/shubhamdipt/passbolt-python-api",
license="MIT",
packages=["passboltapi"],
platforms=["any"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=install_requires,
dependency_links=links,
)