-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (22 loc) · 908 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
from setuptools import setup
setup(
name='mlconf',
packages=['mlconf'],
version='0.0.7',
author='Andreas Grivas',
author_email='[email protected]',
url = 'https://github.com/andreasgrv/mlconf',
download_url = 'https://github.com/andreasgrv/mlconf/archive/0.0.7.tar.gz',
license='BSD',
keywords='config argparse yaml machine-learning',
install_requires=['pyyaml', 'argparse'],
tests_require=['pytest'],
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
],
)