preserves/implementations/python/setup.py

26 lines
826 B
Python
Raw Normal View History

2022-06-03 19:21:44 +00:00
from setuptools import setup
2018-11-15 07:09:35 +00:00
setup(
name="preserves",
2023-10-31 20:28:03 +00:00
version="0.991.0",
2018-11-15 07:09:35 +00:00
author="Tony Garnock-Jones",
author_email="tonyg@leastfixedpoint.com",
2019-08-31 20:04:52 +00:00
license="Apache Software License",
2018-11-15 07:09:35 +00:00
classifiers=[
2023-10-15 10:08:49 +00:00
"Development Status :: 4 - Beta",
2018-11-15 07:09:35 +00:00
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
2019-08-31 20:04:52 +00:00
"License :: OSI Approved :: Apache Software License",
2018-11-15 07:09:35 +00:00
"Programming Language :: Python :: 3",
],
packages=["preserves"],
2023-03-16 20:31:24 +00:00
url="https://preserves.dev/",
2023-10-15 10:08:49 +00:00
description="Data serialization format",
long_description=open("README.md").read(),
2023-03-16 20:38:45 +00:00
long_description_content_type="text/markdown",
2018-11-15 07:09:35 +00:00
install_requires=[],
python_requires=">=3.6, <4",
2021-11-30 17:41:34 +00:00
setup_requires=['setuptools_scm'],
include_package_data=True,
2018-11-15 07:09:35 +00:00
)