-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.49 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
from pathlib import Path
from version import __version__ as version
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='pyadic',
version=version,
license='GNU General Public License v3.0',
description='p-Adic numbers and finite fields in Python',
long_description=long_description,
long_description_content_type='text/markdown',
author='Giuseppe De Laurentis',
author_email='g.dl@hotmail.it',
url='https://github.com/GDeLaurentis/pyadic',
download_url=f'https://github.com/GDeLaurentis/pyadic/archive/v{version}.tar.gz',
project_urls={
'Documentation': 'https://gdelaurentis.github.io/pyadic/',
'Issues': 'https://github.com/GDeLaurentis/pyadic/issues',
},
keywords=['p-adic numbers', 'finite-fields', 'rational reconstruction'],
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy',
'sympy',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
)