-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (25 loc) · 1.04 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
from setuptools import setup, find_packages
from neurtu import __version__
setup(
name='neurtu',
description='A simple benchmarking tool',
long_description=open('README.rst').read(),
version=__version__,
author='Roman Yurchak',
author_email='[email protected]',
packages=find_packages(),
url='https://github.com/symerio/neurtu',
install_requires=['memory_profiler', 'psutil', 'tqdm'],
python_requires=">=3.5",
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development',
'Operating System :: POSIX',
'Operating System :: Unix'],
license='BSD')