forked from jbms/beancount-import
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
45 lines (43 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
36
37
38
39
40
41
42
43
44
45
import os
from setuptools import setup
with open(
os.path.join(os.path.dirname(__file__), 'README.md'),
'r',
newline='\n',
encoding='utf-8') as f:
long_description = f.read()
setup(
name='beancount-import',
description='Semi-automatic importing of external data into beancount.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/jbms/beancount-import',
version='1.3.3',
author='Jeremy Maitin-Shepard',
author_email="[email protected]",
license='GPLv2',
packages=[
"beancount_import",
"beancount_import.source",
],
package_data={
'beancount_import': ['frontend_dist/prod/index.html'],
},
python_requires='>=3.5',
install_requires=[
'beancount>=2.1.3',
'tornado',
'numpy',
'scipy',
'scikit-learn',
'nltk',
'python-dateutil',
'atomicwrites>=1.3.0',
'jsonschema',
'watchdog',
],
test_requirements=[
'pytest',
'coverage',
],
)