source/projects/ratchet/setup.py

31 lines
820 B
Python
Raw Permalink Normal View History

2021-04-09 07:48:40 +00:00
from setuptools import setup
2021-05-31 18:28:46 +00:00
2021-04-09 07:48:40 +00:00
setup(
name="arrdem.ratchet",
# Package metadata
2021-05-15 17:34:32 +00:00
version="0.0.0",
2021-04-09 07:48:40 +00:00
license="MIT",
description="A 'ratcheting' message system",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Reid 'arrdem' McKenzie",
author_email="me@arrdem.com",
url="https://git.arrdem.com/arrdem/ratchet",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
# Package setup
2021-05-15 17:34:32 +00:00
package_dir={"": "src/python"},
2021-04-09 07:48:40 +00:00
packages=[
"ratchet",
],
2021-05-15 17:34:32 +00:00
entry_points={},
install_requires=[],
extras_require={},
2021-04-09 07:48:40 +00:00
)