-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (21 loc) · 753 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (21 loc) · 753 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
#!/usr/bin/env python
# Author: Beta Uliansyah
# email: beta.uliansyah@pknstan.ac.id
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='danarakca',
description=("Provides instant access to many Indonesian governments financial datasets right from "
"Python (in dataframe structure)."),
author='Beta Uliansyah',
url='https://github.com/BetaUliansyah/danarakca',
download_url='https://github.com/BetaUliansyah/danarakca',
license = 'LGPL',
author_email='beta.uliansyah@pknstan.ac.id',
version='0.0.1',
install_requires=['pandas'],
packages=['danarakca', 'danarakca.utils'],
package_data={'danarakca': ['*.gz', 'resources.tar.gz']}
)