@@ -12,9 +12,6 @@ def run(self):
12
12
du_build_ext .run (self )
13
13
14
14
15
- with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
16
- long_description = fh .read ()
17
-
18
15
extensions = [
19
16
Extension (
20
17
"memory_allocator.memory_allocator" ,
@@ -24,29 +21,8 @@ def run(self):
24
21
sources = ["memory_allocator/test.pyx" ]),
25
22
]
26
23
24
+
27
25
setup (
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' ,
37
26
packages = find_packages (),
38
27
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