Skip to content

Instantly share code, notes, and snippets.

@im-n1
Created November 11, 2018 18:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save im-n1/9fd58857a0e466c30fd5133a0eab6848 to your computer and use it in GitHub Desktop.
Save im-n1/9fd58857a0e466c30fd5133a0eab6848 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python3
import setuptools
from eagle import __version__, __description__
# Long description
with open("description.rst", "r") as f:
long_description = f.read()
setuptools.setup(
name="eagle-cli",
# version="0.1.1",
version=__version__,
description=__description__,
long_description=long_description,
author="n1",
url="https://gitlab.com/n1_/eagle",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": ["eagle = eagle.eagle:eagle"]
},
python_requires=">=3.6",
classifiers=[
"Environment :: Console",
"Programming Language :: Python :: 3.6",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Office/Business :: Scheduling ",
]
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment