forked from japsu/phpbb-python
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
17 lines (14 loc) · 477 Bytes
/
Copy pathsetup.py
File metadata and controls
17 lines (14 loc) · 477 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
importos
fromsetuptoolsimportsetup, find_packages
defrequirements(filename):
withopen(os.path.abspath(os.path.join(os.path.dirname(__file__), filename))) asf:
f.readlines()
setup(name='phpbb-python',
version='0.0.1',
description='phpBB authentication in Python',
author='Santtu Pajukanta',
author_email='santtu@pajukanta.fi',
url='https://github.com/japsu/phpbb-python',
packages=find_packages()
)