-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (34 loc) · 1.05 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
import numpy
from setuptools import setup
import tqdm
with open('README.md', 'r') as f:
l_description = f.read()
setup(
name='neowGen',
version='0.0.5',
description='A HuggingFace LLM dataset pipeline generator',
package_dir={'': 'src'},
py_modules=['neowGen'],
long_description = l_description,
long_description_content_type ='text/markdown',
url='https://github.com/pechaut78/neowGen',
install_requires = [
'pandas',
'tqdm',
'numpy',
'huggingface_hub',
'datasets'
],
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
author='Pierre-Emmanuel CHAUT',
author_email='[email protected]'
)