-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
29 lines (28 loc) · 821 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
from setuptools import setup, find_packages
setup(
name='mobula',
version='1.1.0',
description='A Lightweight & Flexible Deep Learning (Neural Network) Framework in Python',
author='wkcn',
author_email='[email protected]',
url='https://github.com/wkcn/mobula',
packages=find_packages(),
package_data={
'': ['*.md'],
'docs': ['docs/*.md'],
'examples': ['examples/*.py']
},
keywords='Deep Learning Framework in Python',
license='MIT',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Mathematics',
'License :: OSI Approved :: MIT License'
],
install_requires=[
'numpy',
'numpy_groupies'
],
python_requires='>=3.6',
)