preserves/implementations/python/setup.py

24 lines
757 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",
2022-07-22 08:24:30 +00:00
version="0.16.1",
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=[
"Development Status :: 3 - Alpha",
"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"],
2019-08-31 20:04:52 +00:00
url="https://gitlab.com/preserves/preserves",
2018-11-15 07:09:35 +00:00
description="Experimental data serialization format",
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
)