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.
|
|
import setuptoolswith open("README.md", "r") as f: long_description = f.read()setuptools.setup( name="c2logic", version="0.1", descripton="Compile c to mindustry logic.", long_description=long_description, long_description_content_type="text/markdown", packages=["c2logic"], license="MIT", author="SuperStormer", url="https://github.com/SuperStormer/c2logic", project_urls={"Source Code": "https://github.com/SuperStormer/c2logic"}, entry_points={"console_scripts": ["c2logic=c2logic:main"]}, install_requires=["pycparser>=2.20"])
|