-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 904 Bytes
/
setup.py
File metadata and controls
34 lines (32 loc) · 904 Bytes
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
from setuptools import setup, find_packages
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
'Operating System :: Microsoft :: Windows :: Windows 10',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
]
setup(
name='F2Depine',
version='0.0.6',
description='Para resolver ejercicios de F2',
long_description=open('README.md').read(),
url='https://github.com/Corri3141/F2Depine',
author='Corrado De Luca',
author_email='corrideluca@gmail.com',
license='MIT',
classifiers=classifiers,
keywords='f2depine',
packages=find_packages(),
install_requires=[
"certifi==2020.6.20",
"cycler==0.10.0",
"kiwisolver==1.2.0",
"matplotlib==3.3.2",
"numpy==1.19.2",
"Pillow==7.2.0",
"pyparsing==2.4.7",
"python-dateutil==2.8.1",
"scipy==1.5.2",
"six==1.15.0",]
)