-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (23 loc) · 889 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
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='wetai',
version='0.0.1',
description='wetAI Python utilities',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/braingeneers/wetai',
author='Braingeneers',
keywords=['machine-learning', 'jupyter', 'neuroscience', 'wetai', 'braingeneers'],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(exclude=()),
install_requires=['numpy', 'scipy', 'requests'],
include_package_data=True)