-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (50 loc) · 1.54 KB
/
setup.py
File metadata and controls
56 lines (50 loc) · 1.54 KB
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
56
#!/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@git+https://git@github.com/sintel-dev/Orion.git@aer', # from aer branch
'tensorflow==2.3.4', # remove later
'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 AER.",
entry_points={
'mlblocks': [
'primitives=aer:MLBLOCKS_PRIMITIVES',
'pipelines=aer:MLBLOCKS_PIPELINES'
],
},
include_package_data=True,
install_requires=install_requires,
keywords='aer',
license="MIT license",
long_description=readme + '\n\n' + history,
long_description_content_type='text/markdown',
name='aer',
packages=find_packages(include=['aer', 'aer.*']),
python_requires='>=3.6,<3.8',
url='https://github.com/dyuliu/aer-paper',
version='0.0.1.dev0',
zip_safe=False,
)