-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 1018 Bytes
/
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
from setuptools import setup, find_packages
VERSION = '1.0'
DESCRIPTION = 'Statistical Gaussian Fitting'
LONG_DESCRIPTION = 'This package outputs an array of data that corresponds to a user-inputted standard deviation. Currently only supports data that corresponds to a symmetric Gaussian distribution.'
# Setting up
setup(
# the name must match the folder name 'verysimplemodule'
name="statfit",
version=VERSION,
author="Cliff Sun",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
install_requires=["numpy", "matplotlib"], # add any additional packages that
# needs to be installed along with your package. Eg: 'caer'
keywords=['python', 'statistical fitting'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)