-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (42 loc) · 1.5 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
from setuptools import setup, find_packages
setup(
name='regressions',
version='2.1.1',
url='https://github.com/jtreeves/regressions_library',
license='MIT',
author='Jackson Reeves',
author_email='jr@jacksonreeves.com',
description='Generates statistical regression models for data sets',
packages=[
'regressions',
'regressions.models',
'regressions.analyses',
'regressions.analyses.equations',
'regressions.analyses.derivatives',
'regressions.analyses.integrals',
'regressions.analyses.roots',
'regressions.statistics',
'regressions.matrices',
'regressions.vectors',
'regressions.errors'
],
include_package_data=True,
long_description=open('PYPI.md').read(),
long_description_content_type='text/markdown',
project_urls={
'Documentation': 'https://regressions.readthedocs.io/en/latest/',
'Source': 'https://github.com/jtreeves/regressions_library'
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=['numpy', 'scipy']
)