-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 890 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 890 Bytes
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
import os
import platform
import sys
from pyimg4 import version as img4
from setuptools import setup, find_packages
BASE_DIR = os.path.realpath(os.path.dirname(__file__))
VERSION = img4.VERSION
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='pyimg4',
version='0.1.1',
description='A Python library for manipulating IMG4, IM4M, and IM4P files.',
author='Mathieu Renard',
author_email='mathieu.renard@gotohack.org',
url='https://github.com/gotohack/pyimg4',
packages=find_packages(),
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
install_requires=[
'scapy',
],
)