forked from openhistogram/libcircllhist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 768 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
with open('README.md') as file:
long_description = file.read()
setup(
name="circllhist",
long_description=long_description,
long_description_content_type='text/markdown',
version="0.3.2",
description="OpenHistogram log-linear histogram library",
maintainer="Circonus Packaging",
maintainer_email="packaging@circonus.com",
url="https://github.com/openhistogram/libcircllhist",
install_requires=['cffi'],
packages=['circllhist'],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX"
],
python_requires=">=2.7",
)