-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (22 loc) · 676 Bytes
/
setup.py
File metadata and controls
32 lines (22 loc) · 676 Bytes
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
from distutils.core import setup
import pandas
setup(
# Application name:
name="convert2pp",
# Version number (initial):
version="0.0.1",
# Application author details:
author="Timo Koole",
# Packages
packages=["convert2pp"],
# Include additional files into the package
# include_package_data=True,
# Details
# url="http://pypi.python.org/pypi/MyApplication_v010/",
#
# license="LICENSE.txt",
description="Application to convert files to PortfolioPerformance",
# long_description=open("README.txt").read(),
# Dependent packages (distributions)
install_requires=['pandas', 'currencyconverter']
)