-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py~
43 lines (38 loc) · 1.55 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
40
41
42
43
from setuptools import setup, find_packages
setup(
name = "Monty Carlo",
version = "0.1.1 dev",
packages = find_packages(),
# scripts = ['say_hello.py'],
# Project uses reStructuredText, so ensure that the docutils get
# installed or upgraded on the target machine
install_requires = ['docutils>=0.3'],
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst'],
# And include any *.msg files found in the 'hello' package, too:
'hello': ['*.msg'],
},
# metadata for upload to PyPI
author = "Mehmet Ali Anil",
author_email = "[email protected]",
description = "Monty Carlo is a modular Monte Carlo engine, suitable for statistical systems.",
license = "LICENSE.txt",
keywords = "monte carlo simulation statistical physics",
url = "http://github.com/monty-carlo/monty-carlo/",
# project home page, if any
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: Other/Proprietary License',
'Natural Language :: English',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Physics'
],
)