-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 924 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read();
def versionDev():
from setuptools_scm.version import get_local_dirty_tag
def clean_scheme(version):
return get_local_dirty_tag(version) if version.dirty else '';
return {'local_scheme': clean_scheme};
setuptools.setup(
name = "assets",
version = "1.0.0",
author = "imaks79",
author_email = "imaks9990@gmail.com",
description = "Набор инструментов для быстрой и удобной работы с данными радара IWR6843ISK",
long_description = long_description,
long_description_content_type = "text/markdown",
packages = setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
use_scm_version = versionDev,
setup_requires = ['setuptools_scm'],
)