-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 748 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 748 Bytes
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from __future__ import absolute_import
from __future__ import print_function
from glob import glob
from os.path import basename
from os.path import splitext
from setuptools import find_packages
from setuptools import setup
setup(
name="deepgraphpose",
version="0.1.0",
description="Deep graph Pose",
author="Author",
author_email="email",
url="url",
#packages=find_packages('src'),
packages=['deepgraphpose'],
package_dir={'':'src'},
#py_modules=[
# splitext(basename(path))[0]
# for path in glob("src/deepgraphpose/*.py", recursive=True)
#],
include_package_data=True,
zip_safe=False, #install_requires=['numpy', 'matplotlib']
)