-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
55 lines (51 loc) · 1.34 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""Setup script."""
import pathlib
from setuptools import setup, find_packages
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
REPO_URL = 'https://github.com/yalishanda42/py-polynomial'
VERSION = '0.6.3'
setup(
name='py-polynomial',
packages=find_packages(exclude=("tests",)),
version=VERSION,
license='MIT',
description='Package defining mathematical single-variable polynomials.',
long_description=README,
long_description_content_type="text/markdown",
author='Alexander Ignatov',
author_email='[email protected]',
url=REPO_URL,
download_url=f'{REPO_URL}/archive/{VERSION}.tar.gz',
keywords=[
'algebra',
'polynomial',
'polynomials',
'mathematics',
'maths',
'derivative',
'derivatives',
'factor',
'factors',
'root',
'roots',
'terms',
'coefficients',
'quadratic',
'linear',
'sympy',
'numpy',
],
install_requires=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)