First files
This commit is contained in:
commit
2742e0cdff
9 changed files with 473 additions and 0 deletions
36
setup.py
Normal file
36
setup.py
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
import os
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
if sys.version_info < (3, 9):
|
||||
raise NotImplementedError("Sorry, you need at least Python 3.9 for use cuchulucputils.")
|
||||
|
||||
setup(name='cuchulucputils',
|
||||
version='0.76.5',
|
||||
description='Utils for make *nix scripts.',
|
||||
long_description='Utils for make *nix scripts.',
|
||||
author='Antonio de la Rosa Caballero',
|
||||
author_email='antonio.delarosa@salirdelhoyo.com',
|
||||
url='https://git.cuchulu.com/paramecio/cuchulucputils',
|
||||
packages=['cuchulucputils'],
|
||||
include_package_data=True,
|
||||
install_requires=[],
|
||||
license='GPLV3',
|
||||
platforms = 'any',
|
||||
classifiers=['Development Status :: 1 - Beta',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: GPLV2 License',
|
||||
'Topic :: Software Development :: Libraries :: Utils for Linux servers',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9' ,
|
||||
'Programming Language :: Python :: 3.10',
|
||||
'Programming Language :: Python :: 3.11',
|
||||
'Programming Language :: Python :: 3.12'
|
||||
'Programming Language :: Python :: 3.13'
|
||||
],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue