@@ -58,13 +58,7 @@ def get_long_description():
5858 return long_description
5959
6060
61- # Handle Py2/Py3 issue
62- if sys .version_info > (3 , 0 ):
63- # In Py3, package data is dict w/ text key
64- package_data = {'multigtfs' : ['tests/fixtures/*.zip' ]}
65- else :
66- # In Py2, package data is dict w/ binary string
67- package_data = {b'multigtfs' : ['tests/fixtures/*.zip' ]}
61+ package_data = {'multigtfs' : ['tests/fixtures/*.zip' ]}
6862
6963
7064setup (
@@ -77,7 +71,7 @@ def get_long_description():
7771 license = 'Apache License 2.0' ,
7872 url = 'https://github.com/tulsawebdevs/django-multi-gtfs' ,
7973 packages = find_packages (),
80- install_requires = ['Django>=2.2' , 'jsonfield>=0.9.20 ' ],
74+ install_requires = ['Django>=3.2,<4.0 ' ],
8175 keywords = ['django' , 'gtfs' ],
8276 test_suite = "run_tests" , # Ignored, but makes pyroma happy
8377 cmdclass = {'test' : my_test },
@@ -86,24 +80,14 @@ def get_long_description():
8680 "Development Status :: 5 - Production/Stable" ,
8781 "Environment :: Web Environment" ,
8882 "Framework :: Django" ,
89- "Framework :: Django :: 1.8" ,
90- "Framework :: Django :: 1.9" ,
91- "Framework :: Django :: 1.10" ,
92- "Framework :: Django :: 1.11" ,
93- "Framework :: Django :: 2.0" ,
94- "Framework :: Django :: 2.1" ,
95- "Framework :: Django :: 2.2" ,
83+ "Framework :: Django :: 3.2" ,
9684 "Intended Audience :: Developers" ,
9785 "License :: OSI Approved :: Apache Software License" ,
9886 "Operating System :: OS Independent" ,
9987 "Programming Language :: Python" ,
100- "Programming Language :: Python :: 2" ,
101- "Programming Language :: Python :: 2.7" ,
102- "Programming Language :: Python :: 3" ,
103- "Programming Language :: Python :: 3.4" ,
104- "Programming Language :: Python :: 3.5" ,
105- "Programming Language :: Python :: 3.6" ,
10688 "Programming Language :: Python :: 3.7" ,
89+ "Programming Language :: Python :: 3.8" ,
90+ "Programming Language :: Python :: 3.9" ,
10791 "Topic :: Software Development :: Libraries :: Python Modules" ,
10892 ],
10993 include_package_data = True ,
0 commit comments