-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (23 loc) · 911 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, find_packages
from rearrangement_algorithm import __version__, __author__, __email__
with open("README.md", encoding="utf8") as rm:
long_desc = rm.read()
setup(
name = "rearrangement_algorithm",
version = __version__,
author = __author__,
author_email = __email__,
description = "Implementation of the rearrangement algorithm",
keywords = ["rearrangement algorith", "quantitative risk management"],
long_description=long_desc,
long_description_content_type="text/markdown",
license='GPLv3',
url='https://gitlab.com/klb2/rearrangement-algorithm',
project_urls={
'Documentation': "https://rearrangement-algorithm.readthedocs.io",
'Source Code': 'https://gitlab.com/klb2/rearrangement-algorithm'
},
packages=find_packages(),
tests_require=['pytest', 'tox'],
install_requires=['numpy', 'scipy'],
)