diff options
| author | Yuval Adam <_@yuv.al> | 2018-02-19 15:17:38 +0100 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2018-02-19 15:17:38 +0100 |
| commit | 019da28a8e620d4e2b5ac828af9c9118c0821c40 (patch) | |
| tree | 5167d62ed9f6c613bc185f29f1398fee2a1fbba5 | |
| parent | 64f84aa1b4bf604835406577e994556e72fd76c9 (diff) | |
More structure changes
| -rw-r--r-- | LICENSE (renamed from LICENSE.txt) | 0 | ||||
| -rw-r--r-- | setup.cfg | 5 | ||||
| -rw-r--r-- | setup.py | 14 | ||||
| -rw-r--r-- | tests/__init__.py (renamed from test.py) | 0 | ||||
| -rw-r--r-- | viewstate/__init__.py (renamed from viewstate.py) | 0 |
5 files changed, 19 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..60bd34d --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[bdist_wheel] +universal = 1 + +[metadata] +license_file = LICENSE
\ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..461c120 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +from setuptools import setup, find_packages + +with open(path.join(here, 'README.rst'), encoding='utf-8') as f: + long_description = f.read() + +setup( + name='viewstate', + version='0.0.1', + description='.NET viewstate decoder', + long_description=long_description, + homepage='https://github.com/yuvadm/viewstate', + author='Yuval Adam', + packages=find_packages(exclude=['docs', 'tests']), +) diff --git a/test.py b/tests/__init__.py index f203615..f203615 100644 --- a/test.py +++ b/tests/__init__.py diff --git a/viewstate.py b/viewstate/__init__.py index b75cd37..b75cd37 100644 --- a/viewstate.py +++ b/viewstate/__init__.py |
