We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f4ae6d commit 4b3f0d6Copy full SHA for 4b3f0d6
setup.py
@@ -0,0 +1,17 @@
1
+#!/usr/bin/env python
2
+
3
+import os
4
+from setuptools import setup, find_packages
5
6
+def requirements(filename):
7
+ with open(os.path.abspath(os.path.join(os.path.dirname(__file__), filename))) as f:
8
+ f.readlines()
9
10
+setup(name='phpbb-python',
11
+ version='0.0.1',
12
+ description='phpBB authentication in Python',
13
+ author='Santtu Pajukanta',
14
+ author_email='santtu@pajukanta.fi',
15
+ url='https://github.com/japsu/phpbb-python',
16
+ packages=find_packages()
17
+ )
0 commit comments