Skip to content
This repository has been archived by the owner on Sep 20, 2023. It is now read-only.

Commit

Permalink
Fix setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
laughingman7743 committed Sep 15, 2018
1 parent 5db2268 commit 9f48032
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
import codecs
import os
import sys
from glob import glob

from setuptools import Command, find_packages, setup
from setuptools.command.install import install
Expand Down Expand Up @@ -103,10 +104,15 @@ def run(self):
license='MIT License',
packages=find_packages(),
package_data={
'': ['LICENSE', '*.rst'],
'': ['LICENSE', '*.rst', 'Pipfile*'],
'jdbc': ['*.txt'],
_PACKAGE_NAME.lower(): ['*.jar', '*.properties'],
},
include_package_data=True,
data_files=[
('', ['LICENSE'] + glob('*.rst') + glob('Pipfile*')),
('jdbc', glob('jdbc/*.txt')),
],
install_requires=[
'future',
'jpype1>=0.6.0',
Expand Down

0 comments on commit 9f48032

Please sign in to comment.