-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 748 Bytes
/
setup.py
File metadata and controls
27 lines (23 loc) · 748 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
from setuptools import setup, find_packages
setup(
name='acecoder',
version='0.0.1',
description='Official Codes for of "ACECODER: Acing Coder RL via Automated Test-Case Synthesis"',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='Dongfu Jiang',
author_email='dongfu.jiang@uwaterloo.ca',
package_dir={'': 'src'}, # Add this line
packages=find_packages(where='src'), # Modify this line
url='https://github.com/TIGER-AI-Lab/AceCoder',
install_requires=[
"transformers",
"torch",
"datasets",
"accelerate",
],
)
# change it to pyproject.toml
# [build-system]
# python setup.py sdist bdist_wheel
# twine upload dist/*