Skip to content

Commit

Permalink
final pyPI setup
Browse files Browse the repository at this point in the history
  • Loading branch information
cSchubes committed Jul 6, 2020
1 parent 9d88e93 commit 1bac426
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
from setuptools import setup, find_packages
from os import path

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

setup(
name='ravenml',
version='1.1',
description='ML Training CLI Tool',
long_description = long_description,
long_description_content_type = 'text/markdown',
license='MIT',
packages=find_packages(),
author='Carson Schubert, Abhi Dhir, Pratyush Singh',
Expand All @@ -29,4 +36,4 @@
ravenml=ravenml.cli:cli
''',
)


0 comments on commit 1bac426

Please sign in to comment.