-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
37 lines (33 loc) · 1.33 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
from setuptools import setup, find_packages
version = "1.1.1"
short_description = "A comprehensive actuarial package for non-life (re)insurance."
def readme():
with open('README.md') as f:
out = f.read()
return out
setup(name="gemact",
version=version,
description=short_description,
long_description=readme(),
long_description_content_type="text/markdown",
url="https://gem-analytics.github.io/gemact/",
author="Gabriele Pittarello, Edoardo Luini",
author_email="[email protected]",
license="BSD 3-Clause",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
],
py_modules=["__init__", "config", "distributions", "copulas", "gemdata", "helperfunctions",
"lossaggregation", "lossmodel", "lossreserve"],
packages= find_packages(),
include_package_data=True,
install_requires=["twiggy", "numpy>=1.22.0", "matplotlib>=3.5.0", "scipy>=1.10.0", "setuptools>=65.5.1"],
project_urls={
'Source Code': 'https://github.com/gpitt71/gemact-code'
}
)