Skip to content

Commit

Permalink
setup update
Browse files Browse the repository at this point in the history
  • Loading branch information
Mr-SGXXX committed Mar 4, 2024
1 parent 8d7020b commit 916b74c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
from setuptools import setup, find_packages

with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()

setup(
name='pyerm',
version='0.1.1',
author='Yuxuan Shao',
author_email='[email protected]',
description='This project is an experiment record manager for python based on SQLite DMS, which can help you efficiently save your experiment settings and results for latter analysis.',
long_description=long_description,
url="https://github.com/Mr-SGXXX/Experiment-Record-Manager",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
include_package_data=True,
)

0 comments on commit 916b74c

Please sign in to comment.