-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.24 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import exists
from setuptools import setup, find_packages
# templalte originally by Eoghan O'Connell at
# https://github.com/PinkShnack/template_python_repo
maintainer = "Eoghan O'Connell"
maintainer_email = "[email protected]"
description = 'StAP (statistics and probability) repository from the GuckLab.'
name = "StAP"
year = "2022"
url = 'https://github.com/GuckLab/StAP'
license = "MIT"
version = "0.1.0"
setup(
name=name,
maintainer=maintainer,
maintainer_email=maintainer_email,
url=url,
version=version,
packages=find_packages(),
package_dir={name: name},
include_package_data=True,
license=license,
description=description,
long_description=open('README.md').read() if exists('README.md') else '',
install_requires=[
"numpy>=1.21.0",
"jupyter>=1.0.0",
"matplotlib>=3.5.0",
],
python_requires=">=3.7",
keywords=["template"],
classifiers=['Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
'Intended Audience :: Education',
],
platforms=['ALL'],
)