Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cdnninja committed Apr 14, 2024
1 parent 252d3fa commit ad82f2b
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
#!/usr/bin/env python

"""The setup script."""

from setuptools import setup, find_packages

with open("README.rst") as readme_file:
readme = readme_file.read()

with open("HISTORY.rst") as history_file:
history = history_file.read()

with open("requirements.txt") as f:
requirements = f.read().splitlines()

long_description = readme + "\n\n" + history
long_description = readme

test_requirements = [
"pytest>=3",
]

setup(
author="cdnninja",
author_email="",
python_requires=">=3.9",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
],
description="Python Boilerplate contains all the boilerplate you need to create a Python package.",
install_requires=requirements,
license="MIT license",
long_description=long_description,
include_package_data=True,
keywords="yoto_api",
name="yoto_api",
packages=find_packages(
include=["yoto_api", "yoto_api.*"]
),
test_suite="tests",
tests_require=test_requirements,
url="https://github.com/cdninja/yoto_api",
version="1.0.0",
zip_safe=False,
)

0 comments on commit ad82f2b

Please sign in to comment.