-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 859 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 859 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
26
27
28
29
import glob
import os
import sys
from setuptools import find_packages, setup
additional_files = []
for filename in glob.iglob('./pwtdata/**', recursive=True):
if '.csv.bz' in filename:
additional_files.append(filename.replace('./pwtdata/', ''))
setup(
name='pwtdata',
version='0.2.0',
author='Tetsu Haruyama',
author_email='haruyama@econ.kobe-u.ac.jp',
packages=find_packages(),
package_dir={'pwtdata': './pwtdata'},
include_package_data=True,
package_data={'pwtdata': additional_files},
install_requires=['pandas'],
url='https://github.com/spring-haru/pwtdata',
license='LICENSE',
description='Python package containing the Penn World Table dataset.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
keywords=['data', 'Penn World Table']
)