-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 861 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from pathlib import Path
from setuptools import setup, find_packages
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
required_packages = ["bitstruct"]
setup(
name="py-packed-struct",
version=0.6,
author="Luca Macavero",
author_email="[email protected]",
maintainer="Luca Macavero",
maintainer_email="[email protected]",
url="https://github.com/lu-maca/py-packed-struct",
description="An implementation of C-like packed structures in Python",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.5",
packages=find_packages(),
setup_requires=["wheel"] + required_packages,
install_requires=required_packages,
include_package_data=True,
)