-
Notifications
You must be signed in to change notification settings - Fork 134
/
setup.py
36 lines (32 loc) · 1.08 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
NAME = "duka"
VERSION = '0.2.1'
setup(
name=NAME,
packages=find_packages(),
install_requires=['requests>=2.9.1'],
version=VERSION,
description='Dukascopy Bank SA historical data downloader',
author='Giuseppe Pes',
author_email='giuse88@gmail.com',
url='https://github.com/giuse88/duka',
download_url='https://github.com/giuse88/duka/tarball/' + VERSION,
keywords=['dukascopy', 'forex', 'finance', 'historical data', 'price', 'currency'],
entry_points={
'console_scripts': [
'duka = duka.main:main',
],
},
classifiers=[
"Environment :: Console",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3 :: Only",
"Development Status :: 4 - Beta",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)