File tree Expand file tree Collapse file tree 2 files changed +7
-15
lines changed Expand file tree Collapse file tree 2 files changed +7
-15
lines changed Original file line number Diff line number Diff line change
1
+ include README.md
2
+ include LICENSE.txt
3
+ include data/
Original file line number Diff line number Diff line change 1
1
# Use setuptools in preference to distutils
2
- try :
3
- from setuptools import setup
4
- except ImportError :
5
- from distutils .core import setup
2
+ from setuptools import setup , find_packages
6
3
import os
7
4
8
5
#-Write Versions File-#
9
- #~~~~~~~~~~~~~~~~~~~~~#
10
6
11
7
VERSION = '0.4.5'
12
8
@@ -94,15 +90,7 @@ def write_version_py(filename=None):
94
90
#~~~~~~~#
95
91
96
92
setup (name = 'quantecon' ,
97
- packages = ['quantecon' ,
98
- 'quantecon.game_theory' ,
99
- 'quantecon.game_theory.game_generators' ,
100
- 'quantecon.markov' ,
101
- 'quantecon.optimize' ,
102
- 'quantecon.random' ,
103
- 'quantecon.tests' ,
104
- 'quantecon.util' ,
105
- ],
93
+ packages = find_packages ('quantecon' )
106
94
version = VERSION ,
107
95
description = DESCRIPTION ,
108
96
long_description = LONG_DESCRIPTION ,
@@ -120,4 +108,5 @@ def write_version_py(filename=None):
120
108
'scipy>=1.0.0' ,
121
109
'sympy' ,
122
110
]
123
- )
111
+ include_package_data = True
112
+ )
You can’t perform that action at this time.
0 commit comments