forked from eric-wieser/numpy_ringbuffer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1.09 KB
/
setup.py
File metadata and controls
36 lines (31 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import setup
with open('numpy_ringbuffer/__about__.py') as f:
exec(f.read())
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
print("No")
long_description = open('README.md').read()
setup(
name="numpy_ringbuffer",
version=__version__,
packages=['numpy_ringbuffer'],
install_requires=["numpy"],
author="Eric Wieser",
author_email="wieser.eric+numpy@gmail.com",
description="Ring buffer implementation for numpy",
long_description=long_description,
license="MIT",
keywords=["numpy", "buffer", "ringbuffer", "circular buffer"],
url="https://github.com/eric-wieser/numpy_ringbuffer",
download_url="https://github.com/eric-wieser/numpy_ringbuffer/tarball/v"+__version__,
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5"
]
)