Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

36 Zeilen
1.1 KiB

  1. #!/usr/bin/python
  2. # -*- coding: utf-8 -*-
  3. # Script for creating the pypi packages
  4. # Works only for python 2.6+
  5. import os
  6. try:
  7. from setuptools import setup, find_packages
  8. except ImportError:
  9. import ez_setup
  10. ez_setup.use_setuptools()
  11. from setuptools import setup, find_packages
  12. # Startup
  13. appname = "webnotes-core"
  14. appversion = "v170"
  15. setup(
  16. name = appname,
  17. version = appversion,
  18. author = "Rushabh Mehta",
  19. namespace_packages = ["webnotes"],
  20. packages = ["webnotes"] + [ os.path.join("webnotes", a) for a in find_packages("webnotes") ],
  21. author_email = "rmehta@gmail.com",
  22. description = "A meta-data based library for creating web apps in python and javascript",
  23. license = "MIT",
  24. keywords = "Meta-data web app framework python",
  25. url = "http://code.google.com/p/webnotes/",
  26. classifiers = ["License :: OSI Approved :: MIT License","Topic :: Software Development :: Libraries :: Python Modules"],
  27. long_description = "Webnotes is a meta-data based framework for web applications in python",
  28. )