Skip to content

Commit 4b3f0d6

Browse files
committed
setup.py
1 parent 6f4ae6d commit 4b3f0d6

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

setup.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)