-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 844 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='PyCoptimizer',
version='0.1.1',
description='Python Code Optimization using compilation flags',
long_description=long_description,
long_description_content_type="text/markdown",
author='Leticia Figueiredo',
author_email='[email protected]',
packages=find_packages(),
license='Apache License',
install_requires=['setuptools', 'numpy', 'matplotlib'],
package_dir={'COptimizer': './PyCoptimizer/coptimizer',
'UserParameters': './PyCoptimizer/user_parameters',
'Results': './PyCoptimizer/results',
'CompClean': './PyCoptimizer/framework/comp_clean',
'Island': './PyCoptimizer/framework/island'}
)