File tree Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Expand file tree Collapse file tree 3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 1- from setuptools import setup , find_namespace_packages
2- import os
1+ from os import path
2+ from setuptools import setup
33
4- this_directory = os . path .abspath (os . path .dirname (__file__ ))
5- with open (os . path .join (this_directory , 'README.rst' ), 'rb' ) as f :
4+ this_directory = path .abspath (path .dirname (__file__ ))
5+ with open (path .join (this_directory , 'README.rst' ), 'rb' ) as f :
66 long_description = f .read ().decode ('utf-8' )
77
88
2525 'Programming Language :: Python :: 3.9' ,
2626 'Programming Language :: Python :: 3 :: Only' ,
2727 ],
28- packages = find_namespace_packages (include = ['fluent.*' ]),
28+ packages = ['fluent.runtime' ],
29+ package_data = {'fluent.runtime' : ['py.typed' ]},
2930 # These should also be duplicated in tox.ini and /.github/workflows/fluent.runtime.yml
3031 install_requires = [
3132 'fluent.syntax>=0.17,<0.20' ,
3233 'attrs' ,
3334 'babel' ,
3435 'pytz' ,
35- 'six' ,
3636 ],
3737 test_suite = 'tests' ,
3838 )
Original file line number Diff line number Diff line change @@ -12,12 +12,10 @@ deps =
1212 attrs ==19.1.0
1313 babel ==2.7.0
1414 pytz ==2019.2
15- six ==1.12.0
1615 syntax: .
1716commands = ./runtests.py
1817
1918[testenv:latest]
2019basepython = python3
2120deps =
2221 .
23- six
You can’t perform that action at this time.
0 commit comments