-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 728 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
packages = find_packages()
# Ensure that we don't pollute the global namespace.
for p in packages:
assert p == 'virtual_nodes' or p.startswith('virtual_nodes.')
setup(name='virtual-nodes',
version='1.0.0',
description='Graph augmentation with virtual nodes',
url='https://github.com/DSep/virtual-nodes',
author='sd974 and jw2323',
author_email='author@cam.ac.uk',
packages=packages,
package_dir={'virtual_nodes': 'virtual_nodes'},
package_data={'virtual_nodes': [
# 'examples/*.md',
]},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
])