-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
28 lines (25 loc) · 959 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
import reskit
version = reskit.__version__
from setuptools import setup, find_packages
setup(name='reskit',
packages=find_packages(),
version=version,
description='Researcher kit for reproducible experiments',
author='Alexander Ivanov, Dmitry Petrov',
author_email='[email protected],'
url='https://github.com/neuro-ml/reskit',
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
license='new BSD'
)