source/projects/proquint/setup.py

42 lines
1.1 KiB
Python
Raw Normal View History

2023-04-06 07:33:13 +00:00
from os import path
2023-07-07 04:55:26 +00:00
2021-08-30 04:35:10 +00:00
from setuptools import setup
2021-08-03 14:42:36 +00:00
2023-07-07 04:55:26 +00:00
2021-08-03 14:42:36 +00:00
here = path.abspath(path.dirname(__file__))
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
2021-08-04 01:04:23 +00:00
name="arrdem.proquint",
version="0.1.0",
description="Enunciable numeric identifiers",
long_description=long_description,
long_description_content_type="text/markdown",
2021-08-03 14:42:36 +00:00
url="https://github.com/arrdem/source",
author="Reid 'arrdem' McKenzie",
author_email="me@arrdem.com",
classifiers=[
# Optional
# https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
2021-08-04 01:04:23 +00:00
"Programming Language :: Python :: 3.9",
],
packages=[
"proquint",
2021-08-03 14:42:36 +00:00
],
2023-04-06 07:26:36 +00:00
entry_points = {
2023-07-07 04:55:26 +00:00
"console_scripts": ["proquint=proquint.__main__:main"],
2023-04-06 07:26:36 +00:00
},
2021-08-04 01:04:23 +00:00
package_dir={"": "src/python"},
python_requires=">=3.9",
2021-08-03 14:42:36 +00:00
extras_require={ # Optional
"dev": ["check-manifest"],
"test": ["pytest", "hypothesis"],
},
)