-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 968 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
'''
python setup.py sdist bdist_wheel
python -m twine upload dist/*
'''
import os
from setuptools import find_packages, setup
from eve import __version__
with open("requires.txt", "r", encoding="utf-8") as fh:
install_requires = fh.read()
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
install_requires=install_requires,
name="eve-mli",
version=__version__,
author="densechen",
author_email="[email protected]",
description="eve-mli: making learning interesting.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/densechen/eve-mli",
download_url = 'https://github.com/densechen/eve-mli/archive/main.zip',
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
],
license="MIT",
python_requires='>=3.6',
)