-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 848 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
29
30
31
from setuptools import setup,find_packages
try:
import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst')
except(IOError, ImportError):
long_description = open('README.md').read()
setup(
name='ezr',
description='a less is more approach to sequential model optimization',
long_description=long_description,
version='0.1.0',
license="BSD2",
py_modules=['ezr'],
url='https://github.com/timm/ezr',
author='Tim Menzies',
author_email='[email protected]',
install_requires=[],
packages=find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Development Status :: 2 - Pre-Alpha',
'Operating System :: OS Independent',
],
entry_points='''
[console_scripts]
ezr=ezr:main
''',
)