GotThatData commited on
Commit
77576d4
·
verified ·
1 Parent(s): 1c1852e

Upload setup.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. setup.py +35 -0
setup.py ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="warpspeed",
5
+ version="1.0.0",
6
+ packages=find_packages(),
7
+ install_requires=[
8
+ "datasets>=2.0.0",
9
+ "torch>=1.9.0",
10
+ "transformers>=4.0.0",
11
+ "pandas>=1.3.0",
12
+ "numpy>=1.19.0",
13
+ "scikit-learn>=0.24.0",
14
+ "matplotlib>=3.4.0",
15
+ "seaborn>=0.11.0",
16
+ "networkx>=2.6.0",
17
+ "nltk>=3.6.0",
18
+ ],
19
+ author="Saifullah62",
20
+ author_email="saifullah62@github.com",
21
+ description="Advanced Star Trek technology analysis and simulation platform",
22
+ long_description=open("README.md").read(),
23
+ long_description_content_type="text/markdown",
24
+ url="https://github.com/Saifullah62/warpSpeed",
25
+ classifiers=[
26
+ "Programming Language :: Python :: 3",
27
+ "License :: OSI Approved :: MIT License",
28
+ "Operating System :: OS Independent",
29
+ "Development Status :: 5 - Production/Stable",
30
+ "Intended Audience :: Science/Research",
31
+ "Topic :: Scientific/Engineering :: Physics",
32
+ "Topic :: Scientific/Engineering :: Artificial Intelligence",
33
+ ],
34
+ python_requires=">=3.8",
35
+ )