-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (53 loc) · 1.75 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
53
54
55
56
57
58
# -*- 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.md').read_text("utf-8")
setup(
author="Brénainn Woodsend",
author_email='[email protected]',
python_requires='>=3.7',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
description="A sophisticated mesh class for analysing 3D surfaces.",
install_requires=copy_requirements(),
entry_points={"pyinstaller40": "hook-dirs=motmot:_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/markdown',
package_data={
"motmot": ["*" + CSLUG_SUFFIX, "*.json", "geometry/_unit_vector.pyi"]
},
keywords='motmot',
name='motmot',
packages=find_packages(include=['motmot', 'motmot.*']),
url='https://github.com/bwoodsend/motmot',
version=runpy.run_path(HERE / "motmot/_version.py")["__version__"],
zip_safe=False,
cmdclass={
"build": build_slugs("motmot._slug:slug"),
"bdist_wheel": bdist_wheel,
},
)