-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
50 lines (45 loc) · 1.18 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
#!/usr/bin/env python3
import os
import io
from setuptools import find_packages, setup
"""
git tag {VERSION}
git push --tags
python setup.py sdist
twine upload dist/*
"""
VERSION = "0.15.0"
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
setup(
name="dotmotif",
version=VERSION,
author="Jordan Matelsky",
author_email="jordan.matelsky@jhuapl.edu",
description=("Find graph motifs using simple, intuitive notation"),
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2.0",
keywords=["graph", "motif"],
url="https://github.com/aplbrain/dotmotif/tarball/" + VERSION,
packages=find_packages(exclude=["tests", "*.tests", "*.tests.*", "tests.*"]),
classifiers=[],
install_requires=[
"networkx>2.4",
"numpy",
"lark-parser",
"pandas",
"grandiso>=2.1.0",
],
extras_require={
"neo4j": [
"py2neo",
],
"neuprint": [
"py2neo",
"neuprint-python",
],
},
include_package_data=True,
)