-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (36 loc) · 1.13 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
import setuptools as st
import distutils.core as dc
import os
import io
VERSION = "0.10.7"
SUMMARY = "Texas Instruments Python Debugging and Programming Support"
here = os.path.abspath(os.path.dirname(__file__))
try:
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
except FileNotFoundError:
long_description = SUMMARY
st.setup(
name="ti-python-module",
version=VERSION,
author="VampireTechnologyLord",
author_email="<[email protected]>",
description=SUMMARY,
long_description=long_description,
long_description_content_type='text/markdown',
packages=st.find_packages(),
install_requires=[],
setup_requires=[
'setuptools>=57.0.1',
'wheel>=0.33.4'],
keywords=["python", "ti", "texas instruments"],
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Topic :: Utilities"
]
)