Added a seperate requirements file for PIP and updated setup.py to use with while reading README and CHANGES
This commit is contained in:
parent
fe811d9887
commit
0ef8696d65
5
requirements.txt
Normal file
5
requirements.txt
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
pyramid
|
||||||
|
waitress
|
||||||
|
transaction
|
||||||
|
zope.sqlalchemy
|
||||||
|
SQLAlchemy
|
6
setup.py
6
setup.py
@ -3,8 +3,10 @@ import os
|
|||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
here = os.path.abspath(os.path.dirname(__file__))
|
here = os.path.abspath(os.path.dirname(__file__))
|
||||||
README = open(os.path.join(here, 'README.txt')).read()
|
with open(os.path.join(here, 'README.txt')) as f:
|
||||||
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
|
README = f.read()
|
||||||
|
with open(os.path.join(here, 'CHANGES.txt')) as f:
|
||||||
|
CHANGES = f.read()
|
||||||
|
|
||||||
requires = [
|
requires = [
|
||||||
'pyramid',
|
'pyramid',
|
||||||
|
Loading…
Reference in New Issue
Block a user