-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
52 lines (51 loc) · 1.71 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
47
48
49
50
51
52
from setuptools import setup, find_packages
setup(
name='openperf',
version='0.1',
description='OpenPerf is a benchmarking suite tailored for the sustainable management of open-source projects. It assesses key metrics and standards vital for the successful development of open-source ecosystems.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Fenglin Bi',
author_email='[email protected]',
url='https://github.com/X-lab2017/open-perf',
packages=find_packages(),
package_data={
'openperf': ['openperf/benchmarks/data_science/bot_detection/data/*.csv'],
},
include_package_data=True,
install_requires=[
'certifi==2024.2.2',
'charset-normalizer==3.3.2',
'click==8.1.7',
'idna==3.7',
'imbalanced-learn==0.12.2',
'joblib==1.4.0',
'numpy==1.26.4',
'pandas==2.2.2',
'python-dateutil==2.9.0.post0',
'pytz==2024.1',
'requests==2.31.0',
'scikit-learn==1.1.1',
'scipy==1.13.0',
'six==1.16.0',
'threadpoolctl==3.4.0',
'tzdata==2024.1',
'urllib3==2.2.1',
'xgboost==2.0.3',
],
entry_points={
'console_scripts': [
'openperf=openperf.main:main',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'License :: OSI Approved :: MIT License',
],
)