graphsense / graphsense-python

A Python client for the GraphSense REST interface.
MIT License
19 stars 3 forks source link

Update setup.py #9

Closed behas closed 2 years ago

behas commented 2 years ago

NAME = "graphsense-python" VERSION = "0.5.1.dev" -> "dev" remove when released / merged into master

setup(
    name=NAME,
    version=VERSION,
    description="GraphSense Python API",
    author="GraphSense Core Dev Team",
    author_email="contact@graphsense.info",
    url="https://github.com/graphsense/graphsense-python",
    keywords=["cryptoassets", "graphsense", "openAPI"],
    python_requires=">=3.6",
    install_requires=REQUIRES,
    packages=find_packages(exclude=["test", "tests"]),
    include_package_data=True,
    long_description="""\
    A Python client for the GraphSense REST interface.
    """
)