-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.29 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
# coding=utf-8
# @Author: jlumbroso
# @Date: 2018-03-29-18:45
# @Email: [email protected]
# @Filename: setup.py
# @Last modified by: jlumbroso
# @Last modified time: 2018-04-02-18:37
from setuptools import setup, find_packages
setup(
name = "reluctant_walks",
packages = find_packages(),
version = "1.2",
description = ("Python/Sage package to study and sample reluctant "
"random walks in the positive quadrant."),
author = "Jérémie Lumbroso",
author_email = "[email protected]",
url = "https://github.com/jlumbroso/reluctant-walks",
keywords = ['combinatorics', 'random walks', 'sampling'],
license = 'LGPLv3',
classifiers = [
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Development Status :: 5 - Production/Stable'
],
)