File tree 2 files changed +17
-8
lines changed
2 files changed +17
-8
lines changed Original file line number Diff line number Diff line change
1
+ [build-system ]
2
+ requires = [" setuptools>=61.2" ]
3
+ build-backend = " setuptools.build_meta"
4
+
5
+ [project ]
6
+ name = " JuPyMake"
7
+ version = " 0.8"
8
+ description = " A simple interface to Polymake"
9
+ authors = [{name = " Sebastian Gutsche" , email = " sebastian.gutsche@gmail.com" }]
10
+ urls = {Homepage = " https://github.com/sebasguts/JuPyMake" }
11
+ readme = " README.md"
12
+
13
+ [tool .setuptools ]
14
+ license-files = [" COPYING" , " GPLv2" ]
Original file line number Diff line number Diff line change 1
- from distutils .core import setup , Extension
1
+ import setuptools
2
+ from setuptools import setup , Extension
3
+
2
4
import sys
3
5
import subprocess
4
6
@@ -32,16 +34,9 @@ def conditional_decode( string ):
32
34
os .environ ["MACOSX_DEPLOYMENT_TARGET" ] = version_arr [0 ]+ '.' + version_arr [1 ]
33
35
34
36
setup (
35
- name = 'JuPyMake' ,
36
- version = '0.8' ,
37
- description = 'A simple interface to Polymake' ,
38
- author = 'Sebastian Gutsche' ,
39
- author_email = 'sebastian.gutsche@gmail.com' ,
40
- url = 'https://github.com/sebasguts/JuPyMake' ,
41
37
ext_modules = [ Extension ( "JuPyMake" ,
42
38
[ "JuPyMake.cpp" ],
43
39
extra_compile_args = polymake_cflags ,
44
40
extra_link_args = polymake_ldflags ,
45
41
define_macros = macro_list ) ],
46
- package_data = { '' : [ "COPYING" , "GPLv2" ] },
47
42
)
You can’t perform that action at this time.
0 commit comments