-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 839 Bytes
/
setup.py
File metadata and controls
28 lines (23 loc) · 839 Bytes
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
from setuptools import find_packages, setup
def main():
import basht as package
setup(
name='basht',
version=package.__version__,
description='basht - A ML-Job for Benchmarking.',
license='MIT',
author='Michael Gebauer, Sebastian Werner',
author_email='gebauerm23@gmail.com',
url=package.URL,
download_url=f'{package.URL}/archive/{package.__version__}.tar.gz',
packages=find_packages(),
install_requires=package.install_requires,
dependency_links=[""],
python_requires=">=3.6",
include_package_data=True,
extras_require={"test": package.test_install_requires},
long_description=package.long_description,
long_description_content_type="text/markdown"
)
if __name__ == "__main__":
main()