|
@@ -0,0 +1,19 @@
|
|
1
|
+#!/usr/bin/env python
|
|
2
|
+# -*- coding: utf-8 -*-
|
|
3
|
+
|
|
4
|
+from setuptools import setup, find_packages
|
|
5
|
+
|
|
6
|
+setup(
|
|
7
|
+ name='pyrpn',
|
|
8
|
+ version='0.1',
|
|
9
|
+ description='Python implementation of a reverse polish notation parser',
|
|
10
|
+ author='Johann Schmitz',
|
|
11
|
+ author_email='johann@j-schmitz.net',
|
|
12
|
+ url='https://ercpe.de/projects/pyrpn',
|
|
13
|
+ #download_url='',
|
|
14
|
+ packages=find_packages('src'),
|
|
15
|
+ package_dir={'': 'src'},
|
|
16
|
+ include_package_data=True,
|
|
17
|
+ zip_safe=False,
|
|
18
|
+ license='GPL-3',
|
|
19
|
+)
|