1234567891011121314151617181920212223242526 |
- #!/usr/bin/env python3
- import os
- from setuptools import setup
- def read(fname):
- return open(os.path.join(os.path.dirname(__file__), fname)).read()
- setup(
- name = "foxpkg",
- version = "0.0.1",
- author = "Xenia Group",
- author_email = "contact@xenialinux.com",
- description= ("Tool used to install user packages on Xenia Linux"),
- license = "GPL-3",
- keywords = "immutable rootfs automation linux",
- url = "https://gitlab.com/xenia-group/foxpg",
- packages = ['foxpkg'],
- long_description=read('README.md'),
- classifiers=[
- "Development Satus :: 3 - Alpha",
- "Topic :: Automation"
- "License :: OSI Approved :: GPL-3"
- ],
- )
|