-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (34 loc) · 1.02 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
import os
import sys
from setuptools import setup, find_packages
assert sys.version_info >= (3, 7, 0), "pyembc requires Python 3.7+"
with open("README.md", 'r') as f:
long_description = f.read()
here = os.path.abspath(os.path.dirname(__file__))
setup(
name="pyembc",
version="0.0.1",
description="pyembc - declarative c datatypes",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/waszil/pyembc",
use_scm_version={
"write_to": "_pyembc_version.py",
"write_to_template": 'version = "{version}"\n',
},
author="csaba.nemes",
author_email="[email protected]",
packages=find_packages(exclude=["test"]),
tests_require=[
"pytest",
"construct"
],
install_requires=[],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)