diff options
author | Jack <jack@db.2.localnet.cc> | 2015-07-04 12:37:58 +0000 |
---|---|---|
committer | Jack <jack@db.2.localnet.cc> | 2015-07-04 17:57:35 +0000 |
commit | 8aefb69293cd37bf81c178ab8102db980e6f46a3 (patch) | |
tree | f2f9540f587dad60e467229e68cec6342b098362 /setup.py | |
download | pyinflux-8aefb69293cd37bf81c178ab8102db980e6f46a3.tar.gz pyinflux-8aefb69293cd37bf81c178ab8102db980e6f46a3.zip |
0.1
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..a82b3c6 --- /dev/null +++ b/setup.py @@ -0,0 +1,24 @@ +#!/usr/bin/env python + +from distutils.core import setup + +setup(name='pyinfluxtools', + version='0.1', + description='Python classes to work with influxdb', + author='Yves Fischer', + author_email='yvesf+github@xapek.org', + license="MIT", + packages = ['pyinfluxtools'], +# url='https://github.com/', +# scripts=[], +# install_requires=[], + classifiers = [ + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Operating System :: OS Independent", + "License :: OSI Approved :: MIT License", + ] +) + |