-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 827 Bytes
/
setup.py
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
import os
from setuptools import setup
def read(relpath: str) -> str:
with open(os.path.join(os.path.dirname(__file__), relpath)) as f:
return f.read()
setup(
name = 'circular-buffer',
version = read('version.txt').strip(),
description = 'Efficient circular buffer implementation in Python with optional Numba JIT compilation',
long_description = read('README.rst'),
author = 'Jan Škoda',
author_email = '[email protected]',
url = 'https://github.com/leftys/circular-buffer',
license = 'MIT',
extras_require = {
'numba': ['numba>=0.46.0'],
},
packages = [
'circular_buffer',
],
classifiers = [
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
]
)