Skip to content

Commit

Permalink
add demo
Browse files Browse the repository at this point in the history
  • Loading branch information
gyzhou2000 committed Sep 18, 2023
1 parent 6d6eee0 commit c22006d
Show file tree
Hide file tree
Showing 10 changed files with 62 additions and 0 deletions.
Binary file added dist/test_gammagl-0.1.tar.gz
Binary file not shown.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from setuptools import setup, find_packages


classifiers = [
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: Apache Software License',
]

setup(
name="test_gammagl",
version="0.1",
author="zhou guangyu",
author_email="[email protected]",
maintainer="zhou guangyu",
license="Apache-2.0 License",
url="https://github.com/gyzhou2000/setup",
download_url="https://github.com/gyzhou2000/setup",
python_requires='>=3.6',
packages=find_packages(),
classifiers=classifiers
)
4 changes: 4 additions & 0 deletions test/1.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from test_gammagl.utils import degree


degree("lsdkjf")
13 changes: 13 additions & 0 deletions test_gammagl.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Metadata-Version: 2.1
Name: test-gammagl
Version: 0.1
Home-page: https://github.com/gyzhou2000/setup
Download-URL: https://github.com/gyzhou2000/setup
Author: zhou guangyu
Author-email: [email protected]
Maintainer: zhou guangyu
License: Apache-2.0 License
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.6
License-File: LICENSE
10 changes: 10 additions & 0 deletions test_gammagl.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
LICENSE
README.md
setup.py
test_gammagl/__init__.py
test_gammagl.egg-info/PKG-INFO
test_gammagl.egg-info/SOURCES.txt
test_gammagl.egg-info/dependency_links.txt
test_gammagl.egg-info/top_level.txt
test_gammagl/utils/__init__.py
test_gammagl/utils/degree.py
1 change: 1 addition & 0 deletions test_gammagl.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions test_gammagl.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test_gammagl
2 changes: 2 additions & 0 deletions test_gammagl/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# __name__ = "test-gammagl"
__version__ = '0.1'
8 changes: 8 additions & 0 deletions test_gammagl/utils/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
from .degree import degree


__all__ = [
'degree'
]

classes = __all__
2 changes: 2 additions & 0 deletions test_gammagl/utils/degree.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
def degree(name):
print(name)

0 comments on commit c22006d

Please sign in to comment.