-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (35 loc) · 1.28 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (35 loc) · 1.28 KB
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
from setuptools import setup, find_packages
setup(
name='beta4dist',
version='0.3.3',
package_dir={'': 'src'},
packages=find_packages(where='src'),
description='A Python package for the Four-Parameter Beta Distribution and Likelihood-Based Estimation',
long_description=open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
author='Soham Ghosh',
author_email='phd2001161004@iiti.ac.in',
url='https://github.com/soham39039820/beta4dist',
license='MIT',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics',
],
python_requires='>=3.7',
install_requires=[
'numpy',
'scipy'
],
extras_require={
'dev': ['pytest']
},
keywords='beta distribution, four-parameter beta, likelihood estimation, statistics, probability, hydrology',
project_urls={
'Documentation': 'https://github.com/soham39039820/beta4dist#readme',
'Source': 'https://github.com/soham39039820/beta4dist',
'Tracker': 'https://github.com/soham39039820/beta4dist/issues',
},
)