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.

22 lines
757 B

  1. from setuptools import setup, find_packages
  2. with open("requirements.txt") as file:
  3. INSTALL_REQUIRES = file.read().rstrip().split("\n")
  4. setup(
  5. name="android_java",
  6. version="1.0",
  7. description="Python module to compile, dex, and run java programs",
  8. install_requires=INSTALL_REQUIRES,
  9. author="Raphael Roberts",
  10. author_email="raphael.roberts48@gmail.com",
  11. packages=find_packages(),
  12. entry_points={"console_scripts": ["droid=android_java:main"]},
  13. classifiers=[
  14. "License :: OSI Approved :: MIT License",
  15. "Programming Language :: Python :: 3 :: Only",
  16. "Programming Language :: Python :: 3.5",
  17. "Programming Language :: Python :: 3.6",
  18. "Programming Language :: Python :: 3.7",
  19. ],
  20. )