-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
55 lines (49 loc) · 1.45 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
53
54
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
with open('README.md', encoding='utf-8') as readme_file:
readme = readme_file.read()
except IOError:
readme = ''
try:
with open('HISTORY.md', encoding='utf-8') as history_file:
history = history_file.read()
except IOError:
history = ''
install_requires = [
'orion-ml',
'notebook'
]
setup(
author='Sarah Alnegheimish',
author_email='smish@mit.edu',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
description="Producing results for Sintel.",
entry_points={
'mlblocks': [
'primitives=sintel:MLBLOCKS_PRIMITIVES',
'pipelines=sintel:MLBLOCKS_PIPELINES'
],
},
include_package_data=True,
install_requires=install_requires,
keywords='sintel',
license="MIT license",
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
name='sintel',
packages=find_packages(include=['sintel', 'sintel.*']),
python_requires='>=3.6,<3.8',
url='https://github.com/sarahmish/sintel-paper',
version='0.0.1.dev0',
zip_safe=False,
)