-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 845 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (25 loc) · 845 Bytes
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
from os import path
from setuptools import setup, find_packages
with open(path.join(path.abspath(path.dirname(__file__)), "README.md")) as f:
long_description = f.read()
setup(
name="model_meter",
version="0.2.0",
author="Dayeon Oh",
author_email="dayeon.dev@gmail.com",
description="Model Meter",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords="model meter",
url="https://github.com/dayeondev/ModelMeter",
install_requires=[],
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
packages=find_packages(exclude=["tests"]),
)