Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
qiuosier committed Mar 18, 2020
1 parent 2fb9074 commit 2a0410e
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
import setuptools
import os
from Aries.files import Markdown

with open("README.md", "r") as fh:
with open("Aries/README.md", "r") as fh:
long_description = fh.read()
long_description = Markdown.from_text(long_description).make_links_absolute("https://github.com/qiuosier/Aries/blob/master/")

version = os.popen('cd Aries && git rev-list --count master').read()

setuptools.setup(
name="Astrology-Aries",
version="0.0.1.dev1",
version="0.0.1.dev%s" % version,
author="Qiu Qin",
author_email="qiuosier@gmail.com",
description="The Aries Library",
description="Python package providing shortcuts to tasks like "
"accessing files on the cloud, running background tasks, configuring logging, etc.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/qiuosier/Aries",
Expand All @@ -19,4 +25,4 @@
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)
)

0 comments on commit 2a0410e

Please sign in to comment.