summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py14
1 files changed, 14 insertions, 0 deletions
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']),
+)