forked from ABI-Software/mapclientplugins.scaffoldcreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (48 loc) · 1.74 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
from setuptools import setup, find_packages
from setuptools.command.install import install
import os
import io
SETUP_DIR = os.path.dirname(os.path.abspath(__file__))
# 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
"opencmiss.utils >= 0.3",
"opencmiss.zinc", # not yet on pypi - need manual install from opencmiss.org
"ZincPythonTools @ https://api.github.com/repos/OpenCMISS-Bindings/ZincPythonTools/tarball/master"
]
source_license = readfile("LICENSE")
class InstallCommand(install):
def run(self):
install.run(self)
# Automatically install requirements from requirements.txt
import subprocess
subprocess.call(['pip', 'install', '-r', os.path.join(SETUP_DIR, 'requirements.txt')])
setup(name='mapclientplugins.meshgeneratorstep',
version='0.1.1',
description='',
long_description='\n'.join(readme) + source_license,
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
],
cmdclass={'install': InstallCommand,},
author='Richard Christie',
author_email='',
url='',
license='APACHE',
packages=find_packages(exclude=['ez_setup',]),
namespace_packages=['mapclientplugins'],
include_package_data=True,
zip_safe=False,
install_requires=requires,
)