setup.py 683 B

1234567891011121314151617181920212223242526
  1. #!/usr/bin/env python3
  2. import os
  3. from setuptools import setup
  4. def read(fname):
  5. return open(os.path.join(os.path.dirname(__file__), fname)).read()
  6. setup(
  7. name = "foxpkg",
  8. version = "0.0.1",
  9. author = "Xenia Group",
  10. author_email = "contact@xenialinux.com",
  11. description= ("Tool used to install user packages on Xenia Linux"),
  12. license = "GPL-3",
  13. keywords = "immutable rootfs automation linux",
  14. url = "https://gitlab.com/xenia-group/foxpg",
  15. packages = ['foxpkg'],
  16. long_description=read('README.md'),
  17. classifiers=[
  18. "Development Satus :: 3 - Alpha",
  19. "Topic :: Automation"
  20. "License :: OSI Approved :: GPL-3"
  21. ],
  22. )