-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (44 loc) · 1.51 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
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2021 The WRENCH Team.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
from simcal.version import __version__
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='simcal',
version=str(__version__),
license='GPLv3',
author='WRENCH team',
author_email='support@wrench-project.org',
description='A simulator calibration framework',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/wrench-project/simcal',
packages=find_packages(),
include_package_data=True,
install_requires=[
'scikit-learn',
'numpy'
],
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
#'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Topic :: Documentation :: Sphinx',
'Topic :: System :: Distributed Computing'
],
#python_requires='>=3.11,<3.12'
python_requires='>=3.12'
)