Skip to content

Commit 6700f7a

Browse files
committed
add setup file to save the name
1 parent a47fd48 commit 6700f7a

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

setup.py

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
from setuptools import setup, find_packages
2+
import codecs
3+
import os
4+
5+
here = os.path.abspath(os.path.dirname(__file__))
6+
7+
with codecs.open(os.path.join(here, "README.md"), encoding="utf-8") as fh:
8+
long_description = "\n" + fh.read()
9+
10+
VERSION = '0.1'
11+
DESCRIPTION = 'ACM Term Premium'
12+
13+
# Setting up
14+
setup(
15+
name="pyacm",
16+
version=VERSION,
17+
author="Tobias Adrian, Richard K. Crump, Emanuel Moench",
18+
maintainer="Gustavo Amarante",
19+
maintainer_email="[email protected]",
20+
description=DESCRIPTION,
21+
long_description_content_type="text/markdown",
22+
long_description=long_description,
23+
packages=find_packages(),
24+
install_requires=[
25+
'pandas',
26+
'scikit-learn',
27+
'numpy',
28+
'matplotlib',
29+
],
30+
keywords=[
31+
'asset pricing',
32+
'yield curve',
33+
'term premium',
34+
],
35+
)

0 commit comments

Comments
 (0)