File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,3 +3,20 @@ requires = ["setuptools",
33 " numpy" ,
44 " Cython>=3" ]
55build-backend = " setuptools.build_meta"
6+
7+ [project ]
8+ name = " python-flint"
9+ description = " Bindings for FLINT and Arb"
10+ version = " 0.5.0"
11+ urls = {Homepage = " https://github.com/flintlib/python-flint" }
12+ authors = [
13+ {name = " Fredrik Johansson" , email = " fredrik.johansson@gmail.com" },
14+ ]
15+ license = {text = " MIT" }
16+ classifiers = [
17+ " Topic :: Scientific/Engineering :: Mathematics" ,
18+ ]
19+
20+ [project .readme ]
21+ file = " README.md"
22+ content-type = " text/markdown"
Original file line number Diff line number Diff line change 132132
133133
134134setup (
135- name = 'python-flint' ,
136135 cmdclass = {'build_ext' : build_ext },
137136 ext_modules = cythonize (ext_modules , compiler_directives = compiler_directives ),
138137 packages = packages ,
139138 package_dir = {'' : 'src' },
140- description = 'Bindings for FLINT and Arb' ,
141- long_description = open ('README.md' ).read (),
142- long_description_content_type = 'text/markdown' ,
143- version = '0.5.0' ,
144- url = 'https://github.com/flintlib/python-flint' ,
145- author = 'Fredrik Johansson' ,
146- author_email = 'fredrik.johansson@gmail.com' ,
147- license = 'MIT' ,
148- classifiers = ['Topic :: Scientific/Engineering :: Mathematics' ])
149-
139+ )
You can’t perform that action at this time.
0 commit comments