forked from KristofferC/Phon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 1009 Bytes
/
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
from distutils.core import setup
import sys
sys.path.append('phon')
setup(name='phon',
version='0.1.0',
author='Kristoffer Carlsson',
author_email='kristoffer.carlsson@chalmers.se',
url='https://github.com/KristofferC/phon',
download_url='https://github.com/KristofferC/phon',
description='Insertion of cohesive elements between polyhedral grains',
long_description=open('README.md').read(),
packages=['phon', 'phon.io', 'phon.io.read', 'phon.io.write',
'phon.mesh_objects', 'phon.mesh_tools'],
keywords='neper voronoi mesh cohesive oofem polycrystalline',
license='The MIT License (MIT)',
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering :: GIS']
)