1
0

setup.py 523 B

123456789101112131415161718192021
  1. #-*- coding:utf-8 -*-
  2. from setuptools import setup, find_packages
  3. setup(
  4. name = "pytraph",
  5. version = "0.0.1",
  6. keywords = ["pip", "deep learning"],
  7. description = "Deep learning framework",
  8. long_description = "Deep learning framework",
  9. license = "MIT Licence",
  10. url = "https://github.com/toyteam/traph.git",
  11. author = "JunWang",
  12. author_email = "[email protected]",
  13. packages = find_packages(),
  14. include_package_data = True,
  15. platforms = "any",
  16. install_requires = ["numpy"]
  17. )