-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (29 loc) · 860 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="desco",
version="0.1",
author="tianyu",
author_email="[email protected]",
description="Towards Scalable Deep Subgraph Counting",
# 项目主页
# url="http://iswbm.com/",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
],
# 希望被打包的文件
package_data={"": ["*.py"], "subgraph_counting": ["*.py"]},
# 不打包某些文件
exclude_package_data={
"data": ["*"],
"ckpt": ["*"],
"results": ["*"],
"test": ["*"],
"analysis": ["*"],
"migrate": ["*"],
},
)