-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 854 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
import os
import setuptools
here = os.path.abspath(os.path.dirname(__file__))
with open("README.md", "r") as fp:
long_description = fp.read()
about = {}
with open(os.path.join(here, "oshash", "__version__.py"), "r") as f:
exec(f.read(), about)
setuptools.setup(
name="oshash",
version=about["__version__"],
author=about["__author__"],
description=about["__description__"],
long_description=long_description,
long_description_content_type="text/markdown",
url=about["__url__"],
license=about["__license__"],
packages=setuptools.find_packages(),
entry_points={"console_scripts": ["oshash = oshash.command:main"]},
python_requires=">=3.5",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Intended Audience :: Developers"
]
)