-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
39 lines (34 loc) · 1.48 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
from setuptools import setup
import sys
# Make sure we have the right Python version.
if sys.version_info[:2] < (2, 7):
print("Phon requires Python 2.7 or newer. Python %d.%d detected" % sys.version_info[:2])
sys.exit(-1)
sys.path.append('phon')
setup(name='phon',
version='0.1.0',
author='Kristoffer Carlsson',
author_email='[email protected]',
url='https://github.com/KristofferC/phon',
download_url='https://github.com/KristofferC/Phon/tarball/master',
description='Insertion of cohesive elements between grains in a mesh.',
long_description=open('README.md').read(),
packages=['phon', 'phon.io_tools', 'phon.io_tools.read', 'phon.io_tools.write',
'phon.mesh_objects', 'phon.mesh_tools'],
keywords='neper voronoi mesh cohesive oofem polycrystalline',
license='The MIT License (MIT)',
classifiers=[
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
install_requires=['numpy>=1.9.0']
)