-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·49 lines (41 loc) · 1.5 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
38
39
40
41
42
43
44
45
46
47
48
49
#!/usr/bin/env python3
from os import path
from setuptools import setup, find_packages
import libmonzo
def run_setup():
"""Run package setup."""
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
try:
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
except:
# This happens when running tests
long_description = None
setup(
name='libmonzo',
version=libmonzo.__version__,
description='An API wrapper around Monzo bank accounts.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/dalemyers/libmonzo',
author='Dale Myers',
author_email='dale@myers.io',
license='MIT',
install_requires=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Office/Business :: Financial',
'Topic :: Software Development :: Libraries'
],
keywords='bank, banks, monzo, mondo',
packages=find_packages(exclude=['docs', 'tests'])
)
if __name__ == "__main__":
run_setup()