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
|
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='polymatrix',
version='0.0.1a1',
install_requires=['dataclass-abc', 'numpy', 'scipy', 'sympy'],
description='A library to represent and manipulate multivariate polynomials',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://gitlab.nccr-automation.ch/michael.schneeberger/polysolver',
author='Michael Schneeberger',
author_email='michael.schneeberger@fhnw.com',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.10',
],
keywords=['multivariate polynomial'],
packages=find_packages(include=['polymatrix', 'polymatrix.*']),
python_requires='>=3.10',
)
|