File tree Expand file tree Collapse file tree 8 files changed +9
-16
lines changed Expand file tree Collapse file tree 8 files changed +9
-16
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- from setuptools import setup
1+ from setuptools import setup , find_namespace_packages
22
33setup (
44 name = 'fluent.docs' ,
5- packages = ['fluent' , 'fluent.docs' ] ,
5+ packages = find_namespace_packages ( include = ['fluent.*' ]) ,
66)
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python
2- from setuptools import setup
1+ from setuptools import setup , find_namespace_packages
32import os
43
54this_directory = os .path .abspath (os .path .dirname (__file__ ))
2524 'Programming Language :: Python :: 3.9' ,
2625 'Programming Language :: Python :: 3 :: Only' ,
2726 ],
28- packages = ['fluent' , 'fluent.pygments' ] ,
27+ packages = find_namespace_packages ( include = ['fluent.*' ]) ,
2928 test_suite = 'tests.pygments'
3029 )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python
2- from setuptools import setup
1+ from setuptools import setup , find_namespace_packages
32import os
43
54this_directory = os .path .abspath (os .path .dirname (__file__ ))
2625 'Programming Language :: Python :: 3.9' ,
2726 'Programming Language :: Python :: 3 :: Only' ,
2827 ],
29- packages = ['fluent' , 'fluent.runtime' ] ,
28+ packages = find_namespace_packages ( include = ['fluent.*' ]) ,
3029 # These should also be duplicated in tox.ini and /.github/workflows/fluent.runtime.yml
3130 install_requires = [
32- 'fluent.syntax>=0.17,<0.19 ' ,
31+ 'fluent.syntax>=0.17,<0.20 ' ,
3332 'attrs' ,
3433 'babel' ,
3534 'pytz' ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1- #!/usr/bin/env python
2- from setuptools import setup
1+ from setuptools import setup , find_namespace_packages
32import os
43
54this_directory = os .path .abspath (os .path .dirname (__file__ ))
2524 'Programming Language :: Python :: 3.9' ,
2625 'Programming Language :: Python :: 3 :: Only' ,
2726 ],
28- packages = ['fluent' , 'fluent.syntax' ] ,
27+ packages = find_namespace_packages ( include = ['fluent.*' ]) ,
2928 test_suite = 'tests.syntax'
3029 )
You can’t perform that action at this time.
0 commit comments