-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 742 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(
name='minhas_hipoteses',
version='0.0.2',
description='Estudos de Estatistica',
long_description='long_description',
long_description_content_type="text/markdown",
author='Andre Tocci',
author_email='andrerussi002@gmail.com',
url='https://github.com/andretocci/statcc',
packages=setuptools.find_packages(),
#package_dir={'minhas_hipoteses': 'stacc/minhas_hipoteses'},
#package_data={'minhas_hipoteses': ['stacc/minhas_hipoteses/*.py']},
install_requires=['numpy', 'scipy'],
license="Apache License 2.0",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires='>=3.5',
)