-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (31 loc) · 1.2 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 distutils.core import setup
def README():
return open("README.md").read()
setup(name='function_synthesizer',
version = '0.0.3',
description = 'Generates a polynomial interpolation from a set up points',
author = 'David J. Kowalk',
author_email = '[email protected]',
url = 'https://github.com/davidkowalk/FunctionSynthesizer',
license = "MIT",
keywords = "math interpolation polynomial calculus",
long_description = README(),
long_description_content_type='text/markdown',
classifiers=[
"Development Status :: 4 - Beta",
'Intended Audience :: Developers',
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages = ["function_synthesizer"],
package_dir = {'function_synthesizer':'src'},
python_requires = ">=3.6",
install_requires=['numpy'],
project_urls={
'Bug Reports': 'https://github.com/davidkowalk/FunctionSynthesizer/issues',
'Funding': 'https://paypal.me/davidkowalk',
'Source': 'https://github.com/davidkowalk/FunctionSynthesizer/',
}
)