-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
28 lines (26 loc) · 1.03 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
from setuptools import setup
setup(name='rough_surfaces',
version='0.1',
description='Analysis, contact and flow - fractures and rough surfaces',
author='Philipp S. Lang',
author_email='[email protected]',
download_url='https://github.com/plang85/rough_surfaces.git',
install_requires=['numpy>=1.9.1',
'scipy>=0.14',
'matplotlib'], # hate this here TODO somehow get rid of plotting stuff
extras_require={
'test': ['pytest>=3.6.0',
'pytest-pep8',
'pytest-xdist',
'pytest-cov',
'codecov'],
},
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Engineers',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
packages=['rough_surfaces'])