-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 1.11 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
from setuptools import setup
import versioneer
import os
def main():
this_directory = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(this_directory, 'README.md'), 'r') as f:
long_description = f.read()
setup(
name='microbench',
version=versioneer.get_version(),
description='Micro-benchmarking framework. Extensible, with '
'distributed/cluster support.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Alex Lubbock',
author_email='[email protected]',
url='https://github.com/alubbock/microbench',
packages=['microbench'],
install_requires=[],
tests_require=['pytest', 'pandas', 'line_profiler'],
cmdclass=versioneer.get_cmdclass(),
zip_safe=True,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python'
]
)
if __name__ == '__main__':
main()