-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
52 lines (47 loc) · 1.5 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# -*- coding: utf-8 -*-
"""
"""
from setuptools import setup, find_packages
import runpy
from pathlib import Path
from cslug.building import (build_slugs, bdist_wheel, CSLUG_SUFFIX,
copy_requirements)
HERE = Path(__file__).resolve().parent
readme = (HERE / 'README.rst').read_text("utf-8")
setup(
author="Brénainn Woodsend",
author_email='bwoodsend@gmail.com',
python_requires='>=3.6',
classifiers=[
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
],
description="NumPy vectorized hash table for fast set and dict operations.",
install_requires=copy_requirements(),
entry_points={
"pyinstaller40": "hook-dirs=hirola:_PyInstaller_hook_dir",
},
extras_require={
"test": [
"pytest>=3", "pytest-order", "coverage", "pytest-cov",
"coverage-conditional-plugin"
]
},
license="MIT license",
long_description=readme,
long_description_content_type='text/x-rst',
package_data={
"hirola": ["*" + CSLUG_SUFFIX, "*.json"],
},
keywords='NumPy Hash-table dict set',
name='hirola',
packages=find_packages(include=['hirola', 'hirola.*']),
url='https://github.com/bwoodsend/hirola',
version=runpy.run_path(HERE / "hirola/_version.py")["__version__"],
zip_safe=False,
cmdclass={
"build": build_slugs("hirola._hash_table:slug"),
"bdist_wheel": bdist_wheel,
},
)