You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
641 B
19 lines
641 B
import setuptools
|
|
with open("README.md", "r") as f:
|
|
long_description = f.read()
|
|
setuptools.setup(
|
|
name="c2logic",
|
|
version="2.5.2",
|
|
descripton="Compiles C code to Mindustry logic.",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
include_package_data=True,
|
|
packages=["c2logic"],
|
|
license="MIT",
|
|
author="SuperStormer",
|
|
url="https://github.com/SuperStormer/c2logic",
|
|
project_urls={"Source Code": "https://github.com/SuperStormer/c2logic"},
|
|
headers=["include/builtins.h", "include/io.h"],
|
|
entry_points={"console_scripts": ["c2logic=c2logic.compiler:main"]},
|
|
install_requires=["pycparser~=2.20"]
|
|
)
|