forked from midstar/pycstruct
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.34 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
from setuptools import setup
try:
with open("README.md", "r") as fh:
long_description = fh.read()
except:
long_description = ""
setup(
name="pycstruct",
version="0.11.1",
description="Binary data handling in Python using dictionaries",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://github.com/midstar/pycstruct",
project_urls={
"Bug Tracker": "https://github.com/midstar/pycstruct/issues",
"Documentation": "https://pycstruct.readthedocs.io/en/latest/",
"Source Code": "https://github.com/midstar/pycstruct",
},
author="Joel Midstjärna",
author_email="joel.midstjarna@gmail.com",
keywords=["struct", "enum", "bitfield", "binary", "protocol", "dict", "dictionary"],
license="MIT",
packages=["pycstruct"],
zip_safe=False,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
],
)