Skip to content

Commit

Permalink
Update ignore and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zhuminjie committed Jun 6, 2019
1 parent 4c95e3c commit 596e26d
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ dist
*.pyd
*.dll
*.so.*
.idea
20 changes: 13 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,22 @@
url="https://github.com/openseespy/openseespy",
packages=setuptools.find_packages(),
package_data={
'': ['opensees.so','opensees.pyd','LICENSE.rst','*.so','*.dll','*.so.*'],
'': [
'opensees.so',
'opensees.pyd',
'LICENSE.rst',
'*.so',
'*.dll',
'*.so.*'],
},
license = 'LICENSE.rst',
license='LICENSE.rst',
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows'
],
platforms = ["Linux",'Windows'],
'Operating System :: Microsoft :: Windows'],
platforms=[
"Linux",
'Windows'],
python_requires='>=3.6',
zip_safe=False
)
zip_safe=False)

0 comments on commit 596e26d

Please sign in to comment.