123456789101112131415161718192021222324252627282930313233343536373839 |
- from os.path import join, dirname, abspath
- from setuptools import setup, find_namespace_packages
- curdir = abspath(dirname(__file__))
- readme = open(join(curdir, 'README.rst')).read()
- setup(
- name = 'setux_desktop',
- version = '0.21.31.0',
- description = 'System deployment',
- long_description = readme,
- keywords = ['utility', ],
- url = 'https://sourceforge.net/p/setux-desktop',
- author = 'Louis RIVIERE',
- author_email = 'louis@riviere.xyz',
- license = 'MIT',
- classifiers = [
- 'Development Status :: 3 - Alpha',
- 'License :: OSI Approved :: MIT License',
- 'Programming Language :: Python :: 3',
- "Operating System :: POSIX :: Linux",
- "Environment :: Console",
- 'Intended Audience :: Developers',
- 'Intended Audience :: Information Technology',
- 'Intended Audience :: System Administrators',
- 'Topic :: System :: Installation/Setup',
- 'Topic :: System :: Systems Administration',
- 'Topic :: Utilities',
- ],
- python_requires='>3.6',
- install_requires = [
- 'setux>=0.21.31.0',
- ],
- packages = find_namespace_packages(
- include=['setux.*']
- ),
- )
|