forked from optimuslib/optimus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (19 loc) · 756 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
import os
from itertools import chain
from setuptools import setup
from setuptools.config import read_configuration
extras = read_configuration("setup.cfg")['options']['extras_require']
# # Dev is everything
# extras['dev'] = list(chain(*extras.values()))
# # All is everything but tests and docs
# exclude_keys = ("tests", "docs", "dev")
# ex_extras = dict(filter(lambda i: i[0] not in exclude_keys, extras.items()))
# # Concatenate all the values together for 'all'
# extras['all'] = list(chain.from_iterable(ex_extras.values()))
setup(extras_require=extras,
include_package_data=True,
data_files=[
('optimus/material/',['optimus/material/Material_database.xls',
'optimus/material/Material_database_user-defined.xls']),
]
)