blob: 0d1f033b112b8c8ae503d6ad6c8411d316b14117 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
from pathlib import Path
from setuptools import setup, find_packages
with open(str(Path(__file__).resolve().parents[0] / 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='viewstate',
version='0.1.0',
description='.NET viewstate decoder',
long_description=long_description,
homepage='https://github.com/yuvadm/viewstate',
author='Yuval Adam',
packages=find_packages(exclude=['docs', 'tests']),
)
|