forked from seltzered/beancount-plugins-metadata-spray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.06 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from setuptools import setup
INSTALL_REQUIRES = (
)
setup(
name='beancount-plugins-metadata-spray',
version='0.0.1',
description="Beancount Plugin to add metadata to accounts",
long_description="",
license='GPLv2',
author='Vivek Gani',
author_email='[email protected]',
url='https://github.com/seltzered/beancount-plugins-metadata-spray',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Financial and Insurance Industry',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Utilities',
],
install_requires=INSTALL_REQUIRES,
packages=['beancount_plugins_metadata_spray',
'beancount_plugins_metadata_spray.plugins',
],
zip_safe=False,
)