forked from jack22-netizen/Janex-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSetup.py
52 lines (35 loc) · 1.29 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
# Here is the module name.
name="Janex",
# version of the module
version="0.0.5",
# Name of Author
author="Cipher58",
download_url = 'https://github.com/Cipher58/Janex/archive/refs/tags/v0.0.2-beta.tar.gz',
# your Email address
author_email="[email protected]",
# #Small Description about module
# description="adding number",
# long_description=long_description,
# Specifying that we are using markdown file for description
long_description=long_description,
long_description_content_type="text/markdown",
# Any link to reach this module, ***if*** you have any webpage or github profile
url="https://github.com/Cipher58",
packages=setuptools.find_packages(),
#if module has dependencies 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=[
"numpy",
"torch",
],
license="Lily 1.0",
# classifiers like program is suitable for python3, just leave as it is.
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)