-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 909 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 909 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
from setuptools import setup
setup(name="moneypython",
version="0.0.2",
description="Simple currency converter",
author="alvcap",
author_email="kape013@gmail.com",
url='https://github.com/alvcap/moneypython',
packages=["moneypython"],
provides=["moneypython"],
package_data={'moneypython': ['currencies.json']},
license="GNU General Public License v3",
install_requires=["requests>=2.13.0"],
entry_points={'console_scripts':
['moneypython = moneypython.converter:main']
},
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial"
]
)