-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
69 lines (56 loc) · 1.96 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
59
60
61
62
63
64
65
66
67
68
69
import codecs
import io
import os
import re
from setuptools import setup, find_packages
SETUP_DIR = os.path.dirname(os.path.abspath(__file__))
def read(*parts):
with codecs.open(os.path.join(SETUP_DIR, *parts), 'r') as fp:
return fp.read()
def find_version(*file_paths):
version_file = read(*file_paths)
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
# List all of your Python package dependencies in the
# requirements.txt file
def readfile(filename, split=False):
with io.open(filename, encoding="utf-8") as stream:
if split:
return stream.read().split("\n")
return stream.read()
readme = readfile("README.rst", split=True)[3:] # skip title
# For requirements not hosted on PyPi place listings
# into the 'requirements.txt' file.
requires = [
# minimal requirements listing
"scaffoldmaker >= 0.12",
"cmlibs.maths >= 0.3",
"cmlibs.utils >= 0.8.1",
"cmlibs.zinc >= 4.0",
"cmlibs.widgets >= 0.5",
"PySide6"
]
source_license = readfile("LICENSE")
setup(
name='mapclientplugins.scaffoldcreator',
version=find_version('mapclientplugins', 'scaffoldcreator', '__init__.py'),
description='MAP Client plugin for generating meshes via scripts using CMLibs-Zinc.',
long_description='\n'.join(readme) + source_license,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
],
author='Richard Christie',
author_email='',
url='https://github.com/ABI-Software/mapclientplugins.scaffoldcreator',
license='APACHE',
packages=find_packages(exclude=['ez_setup', ]),
namespace_packages=['mapclientplugins'],
include_package_data=True,
zip_safe=False,
install_requires=requires,
)