-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
60 lines (49 loc) · 1.7 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
"""
Setup file for nanocom.
"""
import io
import os
import re
from setuptools import find_packages, setup
def get_metadata():
"""
Return metadata for nanocom.
"""
here = os.path.abspath(os.path.dirname(__file__))
init_path = os.path.join(here, 'nanocom', '__init__.py')
readme_path = os.path.join(here, 'README.md')
with io.open(init_path, encoding='utf-8') as f:
about_text = f.read()
metadata = {
key: re.search(r'__' + key + r"__ = '(.*?)'", about_text).group(1)
for key in ('title', 'version', 'url', 'author', 'author_email', 'description')
}
metadata['name'] = metadata.pop('title')
with io.open(readme_path, encoding='utf-8') as f:
metadata['long_description'] = f.read()
metadata['long_description_content_type'] = 'text/markdown'
return metadata
metadata = get_metadata()
setup(
# Options
install_requires=['click~=7.0', 'pyserial~=3.4'],
entry_points={'console_scripts': ['nanocom=nanocom.__main__:cli']},
packages=find_packages(),
# Metadata
download_url='{url}/archive/{version}.tar.gz'.format(**metadata),
project_urls={'Issue Tracker': '{url}/issues'.format(**metadata)},
keywords='serial client cli pyserial',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
**metadata,
)