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.

16 lines
552 B

5 years ago
5 years ago
5 years ago
  1. import setuptools
  2. with open("README.md", "r") as f:
  3. long_description = f.read()
  4. setuptools.setup(
  5. name="c2logic",
  6. version="0.1",
  7. descripton="Compiles C code to Mindustry logic.",
  8. long_description=long_description,
  9. long_description_content_type="text/markdown",
  10. packages=["c2logic"],
  11. license="MIT",
  12. author="SuperStormer",
  13. url="https://github.com/SuperStormer/c2logic",
  14. project_urls={"Source Code": "https://github.com/SuperStormer/c2logic"},
  15. entry_points={"console_scripts": ["c2logic=c2logic:main"]},
  16. install_requires=["pycparser>=2.20"]
  17. )