25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 년 전
12345678910111213141516171819
  1. from setuptools import setup, find_packages
  2. with open("requirements.txt") as f:
  3. install_requires = f.read().strip().split("\n")
  4. # get version from __version__ variable in education/__init__.py
  5. from education import __version__ as version
  6. setup(
  7. name="education",
  8. version=version,
  9. description="Education",
  10. author="InfluxERP",
  11. author_email="hello@frappe.io",
  12. packages=find_packages(),
  13. zip_safe=False,
  14. include_package_data=True,
  15. install_requires=install_requires,
  16. )