-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
40 lines (34 loc) · 1.21 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
import os
from setuptools import setup, find_packages
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name='brbanks2ynab',
version='0.0.2',
url='https://github.com/andreroggeri/br-to-ynab',
author='André Roggeri Campos',
author_email='[email protected]',
license='MIT',
packages=find_packages(),
install_requires=[
'pynubank', 'ynab_sdk', 'inquirer',
# 'pybradesco@git+ssh://[email protected]/andreroggeri/pybradesco@2ac4a2b6037714872777091af5cc8ab952b121ff#egg=pybradesco',
# 'python-alelo@git+ssh://[email protected]/andreroggeri/python-alelo@2ac4a2b6037714872777091af5cc8ab952b121ff#egg=python-alelo',
],
long_description=read("README.md"),
long_description_content_type="text/markdown",
entry_points={
'console_scripts': [
'brbanks2ynab = brbanks2ynab.cli:main'
]
},
test_suite='tests',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
)