-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (33 loc) · 1.09 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (33 loc) · 1.09 KB
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
import setuptools
with open("READ.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="XBNet",
version="1.4.6",
author="Tushar Sarkar",
author_email="tushar.sarkar@somaiya.edu",
# #Small Description about module
description="XBNet is an open source project which is built with PyTorch that works as a Boosted neural network for tabular data",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tusharsarkar3/",
packages=setuptools.find_packages(),
# if module has dependecies i.e. if your package rely on other package at pypi.org
# then you must add there, in order to download every requirement of package
install_requires=[
"sklearn==0.0",
"numpy == 1.22.0",
"pandas == 1.3.3",
"matplotlib==3.4.3",
"torch==1.9.0",
"xgboost==1.4.2",
"tqdm==4.62.2"
],
license="MIT",
# classifiers like program is suitable for python3, just leave as it is.
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)