-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 701 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 701 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
from setuptools import setup
from pynode_next.pynode_version import version
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name = 'pynode_next',
version = version,
author_email="darcy@darcylf.me",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ehne/PyNode-Next",
packages = ['pynode_next'],
install_requires=[
'algorithmX',
],
python_requires='>=3',
)
# notes so that e remembers how to do pypi
# 1. make sure you've got the env open
# 2. run python3 setup.py bdist_wheel
# 3a. to test, run pip install .
# 3b. to publish, run twine upload --skip-existing dist/*