-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (39 loc) · 1.7 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
from setuptools import setup, Extension, Command
extra_compile_args = "-std=c++11"
pyplatec = Extension('platec',
sources = [
'platec_src/platecmodule.cpp',
'platec_src/platecapi.cpp',
'platec_src/plate.cpp',
'platec_src/lithosphere.cpp',
'platec_src/heightmap.cpp',
'platec_src/rectangle.cpp',
'platec_src/simplexnoise.cpp',
'platec_src/simplerandom.cpp',
'platec_src/sqrdmd.cpp',
'platec_src/utils.cpp',
'platec_src/noise.cpp'],
language='c++',
extra_compile_args=[extra_compile_args],
)
setup (name = 'PyPlatec',
version = '1.2.10',
author = "Federico Tomassetti",
author_email = "[email protected]",
url = "https://github.com/ftomassetti/pyplatec",
description = 'Plates simulation library',
ext_modules = [pyplatec],
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Topic :: Software Development :: Libraries :: Python Modules',
])