Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ASHuenchuleo authored Dec 15, 2022
1 parent 8adedaa commit d3fc7a5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
from setuptools import setup, find_packages
with open("requirements.txt") as f:
required_packages = f.readlines()

# read the contents of your README file
from os import path

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()

__version__ = "1.2.0"

setup(
name='alerce',
version=__version__,
description='ALeRCE Client',
long_description_content_type="text/markdown",
long_description=long_description,
author='ALeRCE Team',
author_email='[email protected]',
packages=find_packages(),
Expand Down

0 comments on commit d3fc7a5

Please sign in to comment.