amkyawdev commited on
Commit
9dca49e
·
verified ·
1 Parent(s): 1d82d25

Add setup.py

Browse files
Files changed (1) hide show
  1. setup.py +49 -0
setup.py ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as fh:
4
+ long_description = fh.read()
5
+
6
+ setup(
7
+ name="myanmar-ghost",
8
+ version="1.0.0",
9
+ author="Aung Myo Kyaw",
10
+ author_email="amkyawdev@example.com",
11
+ description="Advanced Myanmar Language Understanding Model with Multi-Modal Fusion",
12
+ long_description=long_description,
13
+ long_description_content_type="text/markdown",
14
+ url="https://huggingface.co/amkyawdev/Myanmar-Ghost-Instruct",
15
+ packages=find_packages(where="src"),
16
+ package_dir={"": "src"},
17
+ classifiers=[
18
+ "Development Status :: 4 - Beta",
19
+ "Intended Audience :: Developers",
20
+ "Intended Audience :: Science/Research",
21
+ "License :: OSI Approved :: Apache Software License",
22
+ "Programming Language :: Python :: 3",
23
+ "Programming Language :: Python :: 3.10",
24
+ "Programming Language :: Python :: 3.11",
25
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
26
+ "Topic :: Text Processing :: Linguistic",
27
+ ],
28
+ python_requires=">=3.10",
29
+ install_requires=[
30
+ "torch>=2.0.0",
31
+ "transformers>=4.35.0",
32
+ "datasets>=2.14.0",
33
+ "librosa>=0.10.0",
34
+ ],
35
+ extras_require={
36
+ "dev": [
37
+ "pytest>=7.4.0",
38
+ "black>=23.0.0",
39
+ "isort>=5.12.0",
40
+ ],
41
+ "xai": [
42
+ "shap>=0.42.0",
43
+ "lime>=0.3.0",
44
+ ],
45
+ "federated": [
46
+ "flwr>=1.5.0",
47
+ ],
48
+ },
49
+ )