Guest User

Untitled

a guest
Apr 1st, 2016
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. import os
  2. from setuptools import setup , find_packages, Extension
  3.  
  4. def read(fname):
  5. return open(os.path.join(os.path.dirname(__file__), fname)).read()
  6.  
  7. setup(
  8. name = "Shogun machine learning toolbox",
  9. version = "4.1.0",
  10. author = "Shogun team",
  11. author_email = "shogun-list@shogun-toolbox.org",
  12. description = ("Shogun is a free, open source toolbox written in C++, offering numerous algorithms and data structures for machine learning problems."),
  13. license = "GPL",
  14. keywords = "Trial pypi shogun package",
  15. url = "http://www.shogun-toolbox.org/page/home/",
  16. packages=find_packages(),
  17. long_description=read('README.md'),
  18. )
Add Comment
Please, Sign In to add comment