source/projects/flowmetal/setup.py

34 lines
921 B
Python
Raw Normal View History

2021-04-09 07:38:49 +00:00
from setuptools import setup
setup(
name="arrdem.flowmetal",
# Package metadata
2021-05-15 17:34:32 +00:00
version="0.0.0",
2021-04-09 07:38:49 +00:00
license="MIT",
description="A weird execution engine",
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/flowmetal",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
],
# Package setup
package_dir={"": "src/python"},
packages=[
"flowmetal",
],
entry_points={
2021-05-15 17:34:32 +00:00
"console_scripts": ["iflow=flowmetal.repl:main"],
2021-04-09 07:38:49 +00:00
},
install_requires=[
2021-05-15 17:34:32 +00:00
"prompt-toolkit~=3.0.0",
2021-04-09 07:38:49 +00:00
],
2021-05-15 17:34:32 +00:00
extras_require={},
2021-04-09 07:38:49 +00:00
)