@@ -12,9 +12,6 @@ def run(self):
1212 du_build_ext .run (self )
1313
1414
15- with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
16- long_description = fh .read ()
17-
1815extensions = [
1916 Extension (
2017 "memory_allocator.memory_allocator" ,
@@ -24,29 +21,8 @@ def run(self):
2421 sources = ["memory_allocator/test.pyx" ]),
2522 ]
2623
24+
2725setup (
28- name = 'memory_allocator' ,
29- version = '0.1.3' ,
30- description = 'An extension class to allocate memory easily with cython' ,
31- long_description = long_description ,
32- long_description_content_type = 'text/markdown' ,
33- url = 'https://github.com/sagemath/memory_allocator' ,
34- author = 'Jeroen Demeyer, Nathann Cohen, Jonathan Kliem' ,
35- 36- license = 'GPLv3' ,
3726 packages = find_packages (),
3827 ext_modules = extensions ,
39- zip_safe = False ,
40- python_requires = '>=3.6' ,
41- package_dir = {'memory_allocator' : 'memory_allocator' },
42- install_requires = ["Cython" ],
43- package_data = {"memory_allocator" : ["*.pxd" ]},
44- cmdclass = {'build_ext' : build_ext },
45- classifiers = [
46- 'Development Status :: 2 - Pre-Alpha' ,
47- 'Intended Audience :: Science/Research' ,
48- 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)' ,
49- 'Programming Language :: Python :: 3' ,
50- 'Programming Language :: Cython' ,
51- 'Topic :: Scientific/Engineering :: Mathematics' ]
52- )
28+ )
0 commit comments