-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
34 lines (29 loc) · 1000 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
25
26
27
28
29
30
31
32
33
34
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_description = open('README.md').read()
from lattice_mc import __version__
VERSION = __version__
config = {
'description': 'A lattice-gas Monte-Carlo simulation tool',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'author': 'Benjamin J. Morgan',
'author_email': 'b.j.morgan@bath.ac.uk',
'url': 'https://github.com/bjmorgan/lattice_mc',
'download_url': "https://github.com/bjmorgan/lattice_mc/archive/%s.tar.gz" % (VERSION),
'version': VERSION,
'install_requires': [ 'numpy',
'matplotlib',
'pandas',
'scipy',
'coverage==4.3.4',
'codeclimate-test-reporter' ],
'license': 'MIT',
'packages': ['lattice_mc'],
'scripts': [],
'name': 'lattice_mc'
}
setup(**config)