-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (42 loc) · 1.05 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
from setuptools import setup, find_packages
setup(
name='salic-ml',
version='0.1.0',
description='Automate the Salic proposal admission process',
url='https://github.com/lappis-unb/salic-ml',
license='GPL v3.0',
package_dir={'': 'src'},
packages=find_packages('src'),
install_requires=[
'django~=2.2',
'django-boogie',
'django-environ~=0.4.5',
'django-filter',
'django-picklefield',
'django-polymorphic',
'djangorestframework',
'django-rest-swagger',
'numpy~=1.15.1',
'pandas~=0.24.2',
'psycopg2-binary',
'pymssql',
'scikit-learn',
'scipy',
'pycpfcnpj',
],
extras_require={
'dev': [
'flake8',
'invoke',
'ipdb~=0.11',
'ipython~=6.5.0',
'jupyter',
'matplotlib',
'pytest~=3.8.0',
'pytest-django',
'seaborn~=0.9.0',
'django-cors-headers',
],
},
python_requires='>=3.6',
)