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
625 B

5 years ago
5 years ago
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="2.3.4",
  7. descripton="Compiles C code to Mindustry logic.",
  8. long_description=long_description,
  9. long_description_content_type="text/markdown",
  10. include_package_data=True,
  11. packages=["c2logic"],
  12. license="MIT",
  13. author="SuperStormer",
  14. url="https://github.com/SuperStormer/c2logic",
  15. project_urls={"Source Code": "https://github.com/SuperStormer/c2logic"},
  16. headers=["include/builtins.h"],
  17. entry_points={"console_scripts": ["c2logic=c2logic.compiler:main"]},
  18. install_requires=["pycparser~=2.20"]
  19. )