forked from david-leon/Dandelion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
56 lines (50 loc) · 1.5 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
44
45
46
47
48
49
50
51
52
53
54
55
56
import os
import re
from setuptools import find_packages
from setuptools import setup
import io, shutil
from distutils.extension import Extension
cmdclass = {}
ext_modules = []
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'dandelion', '__init__.py'), 'r') as f:
init_py = f.read()
version = re.search('__version__ = "(.*)"', init_py).groups()[0]
with io.open(os.path.join(here, 'README.md'), 'r', encoding='utf-8') as f:
README = f.read()
with io.open(os.path.join(here, 'CHANGES.md'), 'r', encoding='utf-8') as f:
CHANGES = f.read()
install_requires = [
'numpy',
'Theano',
]
tests_require = [
'mock',
'pytest',
'pytest-cov',
]
setup(
name="Dandelion",
version=version,
description="A low-level deep learning framework",
long_description="\n\n".join([README, CHANGES]),
classifiers=[
"Intended Audience :: Deep learning scientists and researchers",
"License :: Mozilla Public License v2.0",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
keywords="DL framework, Theano",
author="David Leon (Dawei Leng)",
author_email="[email protected]",
license="Mozilla Public License v2.0",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require={
'testing': tests_require,
},
cmdclass=cmdclass,
ext_modules=ext_modules,
)