generated from mandarons/pypi-lib-template
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
28 lines (25 loc) · 797 Bytes
/
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
from setuptools import find_packages, setup
REPO_URL = "https://github.com/mandarons/bounciepy"
VERSION = "0.3.0"
with open("README.md") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
required = fh.read().splitlines()
setup(
name="bounciepy",
version=VERSION,
author="Mandar Patil",
author_email="mandarons@pm.me",
description="Python library to interact with bouncie.com API",
long_description=long_description,
long_description_content_type="text/markdown",
url=REPO_URL,
package_dir={".": ""},
packages=find_packages(exclude=["tests"]),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
install_requires=required,
)