-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 935 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
27
28
29
30
31
32
33
34
35
36
37
""" setup.py - Main setup module for configuring the development environment """
import os
from setuptools import setup, find_packages
HERE = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(HERE, 'README.md')).read()
VERSION = '1.0'
# Publicly Available Packages (PyPi)
INSTALL_REQUIRES = [
'cython',
'scikit-learn',
'scipy',
'numpy',
'pytest',
'mock',
'black',
'pylint',
'docformatter',
'transformers',
]
setup(
name='src',
version=VERSION,
description="Codes developed during dreamscape project",
long_description=README,
classifiers=['Programming Language :: Python :: 3.7'],
keywords="NLP, Machine Learning",
author="Saeed Najafi",
author_email="snajafi@ualberta.com",
license='MIT',
packages=find_packages(exclude=['docs', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=INSTALL_REQUIRES
)