-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 878 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
from setuptools import setup
setup(
name='SamplePairsGaussian',
version='1.1',
author='Oliver K. Ernst',
packages=['samplePairsGaussian','examples'],
install_requires=[
'numpy'
],
license='GNU General Public License v3.0',
description='Sample pairs of particles according to a discrete Gaussian distrbution',
long_description=open('README.md').read(),
url="https://github.com/smrfeld/sample-pairs-gaussian",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
package_data = {
'examples': ['*.md']
}
)