Added first files
This commit is contained in:
commit
ba591d1810
5 changed files with 255 additions and 0 deletions
39
setup.py
Normal file
39
setup.py
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
#!/usr/bin/env python3
|
||||
|
||||
import sys
|
||||
import os
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
|
||||
if sys.version_info < (3, 5):
|
||||
raise NotImplementedError("Sorry, you need at least Python 3.5 for use pastafaristats.")
|
||||
|
||||
#import paramecio
|
||||
# Pillow should be installed after if you need ImageField
|
||||
# If you install passlib and bcrypt, the password system will use bcrypt by default, if not, will use native crypt libc
|
||||
|
||||
setup(name='pastafaristats',
|
||||
version='1.0.0',
|
||||
description='Simple scripts for send basic data of a server how complement to other stats solutions more comples.',
|
||||
author='Antonio de la Rosa Caballero',
|
||||
author_email='antonio.delarosa@coesinfo.com',
|
||||
url='https://bitbucket.org/paramecio/pastafaristats/',
|
||||
packages=['pastafaristats'],
|
||||
include_package_data=True,
|
||||
install_requires=['psutils'],
|
||||
entry_points={'console_scripts': [
|
||||
'pastafaristats = pastafaristats.send_info_daemon:start',
|
||||
]},
|
||||
zip_safe=False,
|
||||
license='GPLV3',
|
||||
platforms = 'any',
|
||||
classifiers=['Development Status :: 1 - Beta',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: GPLV3 License',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8'
|
||||
],
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue