-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
52 lines (46 loc) · 1.06 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
import os
from setuptools import find_packages
from setuptools import setup
version = '0.1dev'
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.md')).read()
CHANGES = ''
except IOError:
README = CHANGES = ''
install_requires = [
'nolearn',
'Lasagne'
]
tests_require = [
'mock',
'pytest',
'pytest-cov',
'pytest-pep8',
]
docs_require = [
'Sphinx',
]
setup(
name="nolearn_utils",
version=version,
description="Utilities for nolearn.lasagne",
long_description="\n\n".join([README, CHANGES]),
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 2.7",
],
keywords="",
author="Felix Lau",
author_email="[email protected]",
url="https://github.com/felixlaumon/nolearn-utils",
license="MIT",
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require={
'testing': tests_require,
'docs': docs_require,
},
)