forked from jcreigh/pylabview
-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
53 lines (40 loc) · 1.51 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
import os
from setuptools import setup, find_packages
def get_long_description():
this_dir = os.path.dirname(os.path.abspath(__file__))
if not os.path.exists("README.md"):
return ""
else:
with open(os.path.join(this_dir, "README.md")) as readme:
return readme.read().strip()
setup(
name="pylabview",
version="0.1.2",
description="Python LabVIEW File Type Parser",
long_description=get_long_description(),
long_description_content_type="text/markdown",
author="mefistotelis",
install_requires=["Pillow"],
python_requires=">=3.5",
url="https://github.com/mefistotelis/pylabview",
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Utilities",
"Topic :: Software Development",
],
keywords="labview vi instruments parser extractor reverse-engineering development",
packages=find_packages(),
package_data={'pylabview':['assets/tom-thumb.pbm',
'assets/tom-thumb.pil',
'assets/tom-thumb.txt']},
entry_points={'console_scripts':['readRSRC = pylabview.readRSRC:main',
'modRSRC = pylabview.modRSRC:main']},
project_urls={
"Bug Reports": "https://github.com/mefistotelis/pylabview/issues",
"Source": "https://github.com/mefistotelis/pylabview/",
},
)